nixpkgs/pkgs/development/libraries/haskell/hflags/default.nix

15 lines
395 B
Nix
Raw Normal View History

2013-06-12 20:25:53 +01:00
{ cabal, text }:
cabal.mkDerivation (self: {
pname = "hflags";
2013-07-01 10:39:58 +01:00
version = "0.2";
sha256 = "1bz8w1vxqlc2c9iygr2dhy2ck1sd56zjwqzz707nqcmsqqsfmyhb";
2013-06-12 20:25:53 +01:00
buildDepends = [ text ];
meta = {
homepage = "http://github.com/errge/hflags";
description = "Command line flag parser, very similar to Google's gflags";
license = "Apache-2.0";
platforms = self.ghc.meta.platforms;
};
})