472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
28 lines
512 B
Nix
28 lines
512 B
Nix
{
|
|
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";
|
|
}
|