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

18 lines
527 B
Nix
Raw Normal View History

{ cabal, hspec, systemFilepath, text }:
2012-11-08 14:51:45 +01:00
cabal.mkDerivation (self: {
pname = "ReadArgs";
version = "1.2.1";
sha256 = "099gg6nq70yf2pl5ya8f083lw8x5rncnv54y2p5jlkdwfwmpmbnv";
2012-11-08 14:51:45 +01:00
isLibrary = true;
isExecutable = true;
buildDepends = [ systemFilepath text ];
testDepends = [ hspec systemFilepath text ];
2012-11-08 14:51:45 +01:00
meta = {
homepage = "http://github.com/rampion/ReadArgs";
description = "Simple command line argument parsing";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})