summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/get-options/default.nix
blob: 1a8df7a1bad581ed01bf51e21ccf1157e9b6231b (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";
  };
})