Simplify Nix expressions #329

Merged
expipiplus1 merged 1 commits from joe-nix into master 2020-12-11 14:08:17 +01:00
6 changed files with 39 additions and 60 deletions

View File

@ -56,3 +56,11 @@ jobs:
path: dist-newstyle/sdist/brittany-*.tar.gz
name: brittany-${{ github.sha }}.tar.gz
- run: cabal check
nix:
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@v12
- uses: actions/checkout@v2
- run: nix-build

View File

@ -70,7 +70,7 @@ log the size of the input, but _not_ the full input/output of requests.)
- via `nix`:
~~~.sh
nix build -f release.nix # or 'nix-build -f release.nix'
nix build
nix-env -i ./result
~~~
@ -102,6 +102,20 @@ log the size of the input, but _not_ the full input/output of requests.)
aura -A brittany
~~~~
# Development tips
## Run a hoogle server
To host a local Hoogle server with all of Brittany's dependencies run:
```sh
echo brittany.cabal |
$(nix-build '<nixpkgs>' --no-link -A entr)/bin/entr -r -- \
sh -c "nix-shell --run 'hoogle server --local'"
```
This will watch `brittany.cabal` for changes and restart the server when new dependencies are added there.
# Editor Integration
#### Sublime text

View File

@ -1,38 +1,18 @@
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
{ mkDerivation, aeson, base, butcher, bytestring, cmdargs
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
, containers, czipwith, data-tree-print, deepseq, directory, extra
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
, filepath, ghc, ghc-boot-th, ghc-exactprint, ghc-paths, hspec
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
, monad-memo, mtl, multistate, neat-interpolation, parsec, pretty
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
, random, safe, semigroups, stdenv, strict, syb, text, transformers
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
, uniplate, unsafe, yaml
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
{ nixpkgsSrc ? builtins.fetchTarball {
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
url =
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
"https://github.com/nixos/nixpkgs/archive/069f183f16c3ea5d4b6e7625433b92eba77534f7.tar.gz"; # nixos-unstable
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
sha256 = "1by9rqvr2k6iz2yipf89yaj254yicpwq384ijgyy8p71lfxbbww2";
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
}, pkgs ? import nixpkgsSrc { }, compiler ? null, forShell ? pkgs.lib.inNixShell
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
}:
mkDerivation {
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
pname = "brittany";
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
version = "0.11.0.0";
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
src = ./.;
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
isLibrary = true;
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
isExecutable = true;
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
libraryHaskellDepends = [
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
aeson base butcher bytestring cmdargs containers czipwith
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
data-tree-print deepseq directory extra filepath ghc ghc-boot-th
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
ghc-exactprint ghc-paths monad-memo mtl multistate
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
neat-interpolation pretty random safe semigroups strict syb text
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
transformers uniplate unsafe yaml
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
];
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
executableHaskellDepends = [
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
aeson base butcher bytestring cmdargs containers czipwith
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
data-tree-print deepseq directory extra filepath ghc ghc-boot-th
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
ghc-exactprint ghc-paths monad-memo mtl multistate
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
neat-interpolation pretty safe semigroups strict syb text
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
transformers uniplate unsafe yaml
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
];
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
testHaskellDepends = [
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
aeson base butcher bytestring cmdargs containers czipwith
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
data-tree-print deepseq directory extra filepath ghc ghc-boot-th
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
ghc-exactprint ghc-paths hspec monad-memo mtl multistate
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
neat-interpolation parsec pretty safe semigroups strict syb text
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
transformers uniplate unsafe yaml
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
];
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
homepage = "https://github.com/lspitzner/brittany/";
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
description = "Haskell source code formatter";
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
license = stdenv.lib.licenses.agpl3;
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
let
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
haskellPackages = if compiler == null then
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
pkgs.haskellPackages
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
else
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
pkgs.haskell.packages.${compiler};
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
in haskellPackages.developPackage {
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
name = "brittany";
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
root = pkgs.nix-gitignore.gitignoreSource [ ] ./.;
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
returnShellEnv = forShell;
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
}

tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
tfausak commented 2020-12-10 14:47:12 +01:00 (Migrated from github.com)
Review

Should this have name = "brittany", or does it not matter?

Should this have `name = "brittany"`, or does it not matter?
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.
expipiplus1 commented 2020-12-11 10:03:14 +01:00 (Migrated from github.com)
Review

It doesn't really matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

It doesn't *really* matter, in this case it'll use the enclosing directory name. However it should be "brittany" to make sure the same derivation is generated regardless of the directory name. Fixed.

View File

@ -1,5 +0,0 @@
{
url = "https://github.com/nixos/nixpkgs.git";
ref = "release-18.09";
rev = "b9fa31cea0e119ecf1867af4944ddc2f7633aacd";
}

View File

@ -1,5 +0,0 @@
{ pkgs ? import (fetchGit (import ./pkgs.nix)) {}
, compiler ? "ghc822"
}:
pkgs.haskell.packages.${compiler}.callPackage ./shell.nix {}

View File

@ -1,13 +0,0 @@
{ pkgs ? import (fetchGit (import ./pkgs.nix)) {}
, compiler ? "ghc822"
}:
pkgs.haskell.packages.${compiler}.developPackage {
root = ./.;
name = "brittany";
overrides = with pkgs.haskell.lib; self: super: {
};
source-overrides = {
ghc-exactprint = "0.5.8.0";
};
}