1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:08:01 +00:00
nixpkgs/pkgs/development/libraries/haskell/nanospec/default.nix

15 lines
403 B
Nix
Raw Normal View History

2013-02-24 21:16:46 +00:00
{ cabal, hspec, silently }:
cabal.mkDerivation (self: {
pname = "nanospec";
version = "0.2.0";
sha256 = "0g10l86cv33r58zxn2bprqlm80i7g86bwzhn9jqg9s81xc0aw2qv";
2013-02-24 21:16:46 +00:00
testDepends = [ hspec silently ];
doCheck = false;
meta = {
description = "A lightweight implementation of a subset of Hspec's API";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})