summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/ReadArgs/default.nix
blob: c9f107449767739191ff35bde1b4e38f0edb2fc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, hspec, systemFilepath, text }:

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