haskel-command-qq: add pkg

This commit is contained in:
Arseniy Seroka
2014-06-29 04:25:23 +04:00
parent 63aff93c9b
commit 9802165f7a
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ cabal, doctest, hspec, text }:
cabal.mkDerivation (self: {
pname = "command-qq";
version = "0.3.0.0";
sha256 = "1bqfb4gc5ja9d9jygijqpf6014bmfcxnsvpv7c5n4f1z2aj07jy5";
buildDepends = [ text ];
testDepends = [ doctest hspec text ];
doCheck = false;
meta = {
homepage = "http://biegunka.github.io/command-qq/";
description = "Quasiquoters for external commands";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})