812a89f46e
`unstable-2015-01-26` wasn't the actual version of the derivation but instead was discerned from the date of the previous commit used for the fetch.
25 lines
731 B
Nix
25 lines
731 B
Nix
{ stdenv, fetchFromGitHub, pkgconfig, dbus-glib, autoreconfHook, xorg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kbdd";
|
|
version = "unstable-2017-01-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "qnikst";
|
|
repo = "kbdd";
|
|
rev = "0e1056f066ab6e3c74fd0db0c9710a9a2b2538c3";
|
|
sha256 = "068iqkqxh7928xlmz2pvnykszn9bcq2qgkkiwf37k1vm8fdmgzlj";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ xorg.libX11 dbus-glib ];
|
|
|
|
meta = {
|
|
description = "Simple daemon and library to make per window layout using XKB";
|
|
homepage = https://github.com/qnikst/kbdd;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.wedens ];
|
|
};
|
|
}
|