repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
stage-2-init: fix false positives for RO Nix store mounts (#375257)
[NixPkgs.git]
/
pkgs
/
development
/
tools
/
haskell
/
ghc-settings-edit
/
default.nix
blob
4cd19aebcdd7f7b930c075cfdea6eb4ea5ef2c87
1
{
2
mkDerivation,
3
base,
4
containers,
5
lib,
6
}:
7
8
mkDerivation {
9
pname = "ghc-settings-edit";
10
version = "0.1.0";
11
src = builtins.path {
12
path = ./.;
13
name = "source";
14
filter = path: _: (builtins.baseNameOf path) != "default.nix";
15
};
16
isLibrary = false;
17
isExecutable = true;
18
executableHaskellDepends = [
19
base
20
containers
21
];
22
license = [
23
lib.licenses.mit
24
lib.licenses.bsd3
25
];
26
description = "Tool for editing GHC's settings file";
27
mainProgram = "ghc-settings-edit";
28
}