9b0323859f
- cabal2nix: updated to version 1.31 - gloss: updated to version 1.7.2.1 - repa-algorithms: updated to version 3.1.0.1 - repa-bytestring: deleted obsolete package - repa-examples: updated to version 3.1.0.1 - repa-io: updated to version 3.1.0.1 - repa: updated to version 3.1.0.1 - semigroups: updated to version 0.8.0.1 svn path=/nixpkgs/trunk/; revision=33659
21 lines
647 B
Nix
21 lines
647 B
Nix
{ cabal, Cabal, filepath, hackageDb, HTTP, mtl, regexPosix }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "cabal2nix";
|
|
version = "1.31";
|
|
sha256 = "04qc74h6w3mvb3h3mv0hb3bbwk22ifl29hg3dcq1d5bg4y21j1vr";
|
|
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
|
|
];
|
|
};
|
|
})
|