60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, writeText
|
|
, pkg-config
|
|
, libX11
|
|
, libXft
|
|
, libXi
|
|
, libXinerama
|
|
, libXtst
|
|
, layout ? null
|
|
, conf ? null
|
|
, patches ? [ ]
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "svkbd";
|
|
version = "0.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://dl.suckless.org/tools/svkbd-${version}.tar.gz";
|
|
sha256 = "108khx665d7dlzs04iy4g1nw3fyqpy6kd0afrwiapaibgv4xhfsk";
|
|
};
|
|
|
|
inherit patches;
|
|
|
|
postPatch = let
|
|
configFile = if lib.isDerivation conf || lib.isPath conf then
|
|
conf
|
|
else
|
|
writeText "config.def.h" conf;
|
|
in lib.optionalString (conf != null) ''
|
|
cp ${configFile} config.def.h
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libX11
|
|
libXft
|
|
libXi
|
|
libXinerama
|
|
libXtst
|
|
];
|
|
|
|
makeFlags = [
|
|
"PREFIX=${placeholder "out"}"
|
|
] ++ lib.optional (layout != null) "LAYOUT=${layout}";
|
|
|
|
meta = with lib; {
|
|
description = "Simple virtual keyboard";
|
|
homepage = "https://tools.suckless.org/x/svkbd/";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|