summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/cmdargs/default.nix
blob: b7d3e81160a8f551f537e4814e1d7b051a20d034 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, filepath, mtl}:

cabal.mkDerivation (self : {
  pname = "cmdargs";
  version = "0.1";
  sha256 = "1ec8a0b49dedc0b159c4e8f6b02ae57ba918b27d8648294998a13e04cf257ebf";
  propagatedBuildInputs = [filepath mtl];
  meta = {
    description = "Command line argument processing";
    license = "BSD";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})