16ecd0d5ca
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>
16 lines
424 B
Nix
16 lines
424 B
Nix
{ lib, runCommandCC, libxkbcommon }:
|
|
|
|
runCommandCC "xkbvalidate" {
|
|
buildInputs = [ libxkbcommon ];
|
|
meta = {
|
|
description = "NixOS tool to validate X keyboard configuration";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = [ lib.maintainers.aszlig ];
|
|
};
|
|
} ''
|
|
mkdir -p "$out/bin"
|
|
$CC -std=c11 -Wall -pedantic -lxkbcommon ${./xkbvalidate.c} \
|
|
-o "$out/bin/xkbvalidate"
|
|
''
|