xkbvalidate: Rename output binary to xkbvalidate
So far, the output binary has been just "validate", which is quite a very generic name and doesn't match the package name. Even though I highly doubt that this program will ever be used outside of NixOS modules, it's nevertheless less confusing to have a consistent naming. Signed-off-by: aszlig <aszlig@nix.build>
This commit is contained in:
parent
1964b0c1b1
commit
16ecd0d5ca
@ -714,7 +714,7 @@ in
|
|||||||
nativeBuildInputs = [ pkgs.xkbvalidate ];
|
nativeBuildInputs = [ pkgs.xkbvalidate ];
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
} ''
|
} ''
|
||||||
validate "$xkbModel" "$layout" "$xkbVariant" "$xkbOptions"
|
xkbvalidate "$xkbModel" "$layout" "$xkbVariant" "$xkbOptions"
|
||||||
touch "$out"
|
touch "$out"
|
||||||
'');
|
'');
|
||||||
|
|
||||||
|
@ -11,5 +11,5 @@ runCommandCC "xkbvalidate" {
|
|||||||
} ''
|
} ''
|
||||||
mkdir -p "$out/bin"
|
mkdir -p "$out/bin"
|
||||||
$CC -std=c11 -Wall -pedantic -lxkbcommon ${./xkbvalidate.c} \
|
$CC -std=c11 -Wall -pedantic -lxkbcommon ${./xkbvalidate.c} \
|
||||||
-o "$out/bin/validate"
|
-o "$out/bin/xkbvalidate"
|
||||||
''
|
''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user