Update release.nix (#180)

Fixes #179

This updates the instructions and fixes the spurious reference to
`prettyprinter.nix` that I accidentally checked in
This commit is contained in:
Gabriel Gonzalez 2017-11-15 09:31:27 -08:00 committed by GitHub
parent f16502ccb3
commit be10607f96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,10 @@
# You can build this repository using Nix by running:
#
# $ nix-build -A dhall release.nix
# $ nix-build release.nix
#
# You can also open up this repository inside of a Nix shell by running:
#
# $ nix-shell -A dhall.env release.nix
# $ nix-shell
#
# ... and then Nix will supply the correct Haskell development environment for
# you
@ -14,8 +14,6 @@ let
haskellPackages = pkgs.haskellPackages.override {
overrides = haskellPackagesNew: haskellPackagesOld: {
dhall = haskellPackagesNew.callPackage ./default.nix { };
prettyprinter = haskellPackagesNew.callPackage ./prettyprinter.nix { };
};
};
};