forked from mirrors/nixpkgs
Whoops, forgot the nix expression
svn path=/nixpkgs/trunk/; revision=30129
This commit is contained in:
parent
53bf668c0f
commit
3ec73f62af
13
pkgs/development/libraries/haskell/curl/default.nix
Normal file
13
pkgs/development/libraries/haskell/curl/default.nix
Normal 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;
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue