1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

haskell-basic-prelude: add version 0.3.1.0

This commit is contained in:
Peter Simons 2012-11-08 14:49:08 +01:00
parent 4f7de7b509
commit c7d5f1ce2f
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ cabal, hashable, ReadArgs, systemFilepath, text, transformers
, unorderedContainers, vector
}:
cabal.mkDerivation (self: {
pname = "basic-prelude";
version = "0.3.1.0";
sha256 = "15k89z78zjhga36wrvfn8b17hsmlwr1na6xq0gmimivfrdlnz5j0";
buildDepends = [
hashable ReadArgs systemFilepath text transformers
unorderedContainers vector
];
meta = {
homepage = "https://github.com/snoyberg/basic-prelude";
description = "An enhanced core prelude; a common foundation for alternate preludes";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -486,6 +486,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
baseUnicodeSymbols = callPackage ../development/libraries/haskell/base-unicode-symbols {};
basicPrelude = callPackage ../development/libraries/haskell/basic-prelude {};
benchpress = callPackage ../development/libraries/haskell/benchpress {
time = self.time_1_1_3;
};