summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/ReadArgs/default.nix
blob: 1adec3b3d6d9d54dedb78857f305869661b3d16b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, hspec, systemFilepath, text }:

cabal.mkDerivation (self: {
  pname = "ReadArgs";
  version = "1.2.1";
  sha256 = "099gg6nq70yf2pl5ya8f083lw8x5rncnv54y2p5jlkdwfwmpmbnv";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ systemFilepath text ];
  testDepends = [ hspec systemFilepath text ];
  meta = {
    homepage = "http://github.com/rampion/ReadArgs";
    description = "Simple command line argument parsing";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.simons ];
  };
})