nixpkgs/pkgs/development/libraries/haskell/get-options/default.nix

13 lines
264 B
Nix
Raw Normal View History

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