blob: 03ba1f9433de7437725421c414db3377b3baa592 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ stdenvNoCC, gauche }:
stdenvNoCC.mkDerivation {
name = "apply-config";
src = ./.;
buildInputs = [ gauche ];
installPhase = ''
mkdir -p $out/bin
cp apply-config $out/bin
'';
}
|