19 lines
595 B
Nix
19 lines
595 B
Nix
{ cabal, basicPrelude, hashable, liftedBase, systemFilepath, text
|
|
, transformers, unorderedContainers, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "classy-prelude";
|
|
version = "0.5.0";
|
|
sha256 = "187a1p2x7jw53iramdq3v2m8h451k5nrjrmnv5sz4c8x9jmj04dp";
|
|
buildDepends = [
|
|
basicPrelude hashable liftedBase systemFilepath text transformers
|
|
unorderedContainers vector
|
|
];
|
|
meta = {
|
|
homepage = "https://github.com/snoyberg/classy-prelude";
|
|
description = "A typeclass-based Prelude";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|