3
0
Fork 0
forked from mirrors/nixpkgs

Whoops, forgot the nix expression

svn path=/nixpkgs/trunk/; revision=30129
This commit is contained in:
Shea Levy 2011-10-30 15:26:55 +00:00
parent 53bf668c0f
commit 3ec73f62af

View file

@ -0,0 +1,13 @@
{ cabal, curl }:
cabal.mkDerivation (self: {
pname = "curl";
version = "1.3.7";
sha256 = "0i6d7732p5gn1bcvavbxcg4wd18j425mi1yjg0b29zzz3yl0qhgi";
extraLibraries = [ curl ];
meta = {
description = "Haskell binding to libcurl";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})