363510a983
svn path=/nixpkgs/trunk/; revision=29356
21 lines
644 B
Nix
21 lines
644 B
Nix
{ cabal, hackageDb, HTTP, mtl, nixosTypes, regexPosix }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "cabal2nix";
|
|
version = "1.17";
|
|
sha256 = "0pga0rfghpvjazhs0mgnxg2kf82m8bsmlx3g9pxhiw5f4amfr2g7";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
buildDepends = [ hackageDb HTTP mtl nixosTypes regexPosix ];
|
|
meta = {
|
|
homepage = "http://github.com/haskell4nix/cabal2nix";
|
|
description = "Convert Cabal files into Nix build instructions";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|