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/cryptohash-cryptoapi/default.nix
2013-04-06 10:32:54 +02:00

15 lines
491 B
Nix

{ cabal, cereal, cryptoApi, cryptohash, tagged }:
cabal.mkDerivation (self: {
pname = "cryptohash-cryptoapi";
version = "0.1.0";
sha256 = "06b62ddwx2mp71dzaj8h88vw2c6nv3rj8n6d3d9vmqa7cws3mjkx";
buildDepends = [ cereal cryptoApi cryptohash tagged ];
meta = {
homepage = "http://github.com/vincenthz/hs-cryptohash-cryptoapi";
description = "Crypto-api interfaces for cryptohash";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})