dbce2ffd0f
svn path=/nixpkgs/trunk/; revision=28492
18 lines
521 B
Nix
18 lines
521 B
Nix
{ cabal, haskellSrcExts, syb, thLift }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "haskell-src-meta";
|
|
version = "0.4.0.1";
|
|
sha256 = "10g74sax8x45lphy133717y9xb43d8a684mm9qv0arjwn5v4np7s";
|
|
buildDepends = [ haskellSrcExts syb thLift ];
|
|
meta = {
|
|
description = "Parse source to template-haskell abstract syntax";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|