1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/zlib-bindings/default.nix
Andres Löh 1b603fe157 Added yesod-core.
svn path=/nixpkgs/trunk/; revision=27650
2011-07-07 21:40:35 +00:00

15 lines
352 B
Nix

{cabal, zlib}:
cabal.mkDerivation (self : {
pname = "zlib-bindings";
version = "0.0.0";
sha256 = "168sll6mrmcnvdmdx79izqxcrli1s7asp4qilhkqss8w0jlrv1ni";
propagatedBuildInputs = [zlib];
meta = {
description = "Low-level bindings to the zlib package";
license = "BSD3";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})