eb462dcf47
svn path=/nixpkgs/trunk/; revision=28225
20 lines
508 B
Nix
20 lines
508 B
Nix
{fetchgit,cabal,HTTP}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "cabal2nix";
|
|
version = "v1.8-beta-7";
|
|
|
|
src = fetchgit {
|
|
url = "git://github.com/peti/cabal2nix.git";
|
|
rev = "d72475c412873a45db16d8bb0e5c1e4859e35544";
|
|
};
|
|
|
|
propagatedBuildInputs = [HTTP];
|
|
meta = {
|
|
homepage = "http://github.com/peti/cabal2nix";
|
|
description = "Convert Cabal files into Nix build instructions";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
|
};
|
|
})
|