mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
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 ];
|
||||
preferLocalBuild = true;
|
||||
} ''
|
||||
validate "$xkbModel" "$layout" "$xkbVariant" "$xkbOptions"
|
||||
xkbvalidate "$xkbModel" "$layout" "$xkbVariant" "$xkbOptions"
|
||||
touch "$out"
|
||||
'');
|
||||
|
||||
|
@ -11,5 +11,5 @@ runCommandCC "xkbvalidate" {
|
||||
} ''
|
||||
mkdir -p "$out/bin"
|
||||
$CC -std=c11 -Wall -pedantic -lxkbcommon ${./xkbvalidate.c} \
|
||||
-o "$out/bin/validate"
|
||||
-o "$out/bin/xkbvalidate"
|
||||
''
|
||||
|
Loading…
Reference in New Issue
Block a user