Update nix dependencies with sort package

This commit is contained in:
Hunter Kelly 2019-11-25 10:28:27 +00:00
parent a7c595b6c9
commit 4b3827b1be
No known key found for this signature in database
GPG Key ID: 683C3834466A8CF5
3 changed files with 12 additions and 1 deletions

View File

@ -8,7 +8,7 @@ mkDerivation {
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson base containers dhall prettyprinter text turtle vector
aeson base containers dhall prettyprinter text turtle vector sort
];
homepage = "https://github.com/dhall-lang/dhall-kubernetes#readme";
license = stdenv.lib.licenses.bsd3;

View File

@ -17,6 +17,7 @@ let
dhall-text = haskellPackagesNew.callPackage ./dhall-text-1.0.18.nix {};
megaparsec = haskellPackagesNew.callPackage ./megaparsec-7.0.2.nix {};
repline = haskellPackagesNew.callPackage ./repline-0.2.1.0.nix {};
sort = haskellPackagesNew.callPackage ./sort-1.0.0.0.nix {};
};
};
};

10
nix/sort-1.0.0.0.nix Normal file
View File

@ -0,0 +1,10 @@
{ mkDerivation, base, stdenv }:
mkDerivation {
pname = "sort";
version = "1.0.0.0";
sha256 = "cee3894879cb4b2150331eca96d5d27f51a6114bcb082d1d8dded55881f5770d";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/cdornan/sort";
description = "A Haskell sorting toolkit";
license = stdenv.lib.licenses.bsd3;
}