depot/third_party/nixpkgs/pkgs/development/tools/haskell/ghc-settings-edit/default.nix

29 lines
512 B
Nix
Raw Normal View History

{
mkDerivation,
base,
containers,
lib,
}:
mkDerivation {
pname = "ghc-settings-edit";
version = "0.1.0";
src = builtins.path {
path = ./.;
name = "source";
filter = path: _: (builtins.baseNameOf path) != "default.nix";
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base
containers
];
license = [
lib.licenses.mit
lib.licenses.bsd3
];
description = "Tool for editing GHC's settings file";
mainProgram = "ghc-settings-edit";
}