1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/haskell/data-checked/default.nix

15 lines
411 B
Nix
Raw Normal View History

2014-06-07 22:38:41 +01:00
{ cabal, deepseq }:
cabal.mkDerivation (self: {
pname = "data-checked";
version = "0.3";
sha256 = "0xjn7iqlsgi51h8gz4x40kc2qb5lwf6nw5kjwgkck1w5gjfd11yw";
buildDepends = [ deepseq ];
meta = {
homepage = "https://github.com/mvv/data-checked";
description = "Type-indexed runtime-checked properties";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})