1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 17:10:48 +00:00
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";
};
})