nixpkgs/pkgs/development/libraries/haskell/get-options/default.nix
Marc Weber f6e24fddbe cosmetic: fix descriptions
svn path=/nixpkgs/trunk/; revision=16398
2009-07-16 15:18:07 +00:00

13 lines
264 B
Nix

{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";
};
})