nixpkgs/pkgs/applications/window-managers/kbdd/default.nix
wedens 812a89f46e kbdd: unstable-2015-01-26 -> unstable-2017-01-29
`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.
2019-01-02 22:15:58 -05:00

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 ];
};
}