29 lines
1021 B
Nix
29 lines
1021 B
Nix
{ cabal, aeson, Cabal, dataLens, dataLensTemplate, filemanip
|
|
, filepath, haskellPackages, haskellSrcExts, hseCpp, mtl
|
|
, prettyShow, tagged, tasty, tastyGolden, transformers
|
|
, traverseWithClass, typeEq, uniplate, utf8String
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "haskell-names";
|
|
version = "0.3.1";
|
|
sha256 = "134rxpsgki1disb24gvj1bq5xi4491k9ihb5pjhab78w4m7b99gn";
|
|
buildDepends = [
|
|
aeson Cabal dataLens dataLensTemplate filepath haskellPackages
|
|
haskellSrcExts hseCpp mtl tagged transformers traverseWithClass
|
|
typeEq uniplate
|
|
];
|
|
testDepends = [
|
|
aeson Cabal filemanip filepath haskellPackages haskellSrcExts
|
|
hseCpp mtl prettyShow tagged tasty tastyGolden traverseWithClass
|
|
uniplate utf8String
|
|
];
|
|
meta = {
|
|
homepage = "http://documentup.com/haskell-suite/haskell-names";
|
|
description = "Name resolution library for Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
};
|
|
})
|