3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/nanospec/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

15 lines
403 B
Nix

{ cabal, hspec, silently }:
cabal.mkDerivation (self: {
pname = "nanospec";
version = "0.1.0";
sha256 = "16qpn199p8nrllg800zryhb8795jgk78znng5fjq1raj8l3snjk0";
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;
};
})