summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/get-options/default.nix
blob: 7c33707bf7018dcdb25e36286cfb570c9cc98e68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, sourceByName, mtl}:

cabal.mkDerivation (self : {
  pname = "get-options";
  version = "x"; # ? 
  name = self.fname;
  src = sourceByName "getOptions";
  extraBuildInputs = [ mtl ];
  meta = {
    description = "simple to use get option library";
  };
})