d44e55866a
- cabal2nix: updated to version 1.30 - cmdargs: updated to version 0.9.5 - derive: updated to version 2.5.6 - hlint: updated to version 1.8.25 - io-choice: added version 0.0.1 svn path=/nixpkgs/trunk/; revision=33411
21 lines
647 B
Nix
21 lines
647 B
Nix
{ cabal, Cabal, filepath, hackageDb, HTTP, mtl, regexPosix }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "cabal2nix";
|
|
version = "1.30";
|
|
sha256 = "1qkrdxqvasm0q4sh98c50qwpm7nff6yzp4yjhx8sdy39v4gvbw2b";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
buildDepends = [ Cabal filepath hackageDb HTTP mtl regexPosix ];
|
|
meta = {
|
|
homepage = "http://github.com/NixOS/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
|
|
];
|
|
};
|
|
})
|