mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
commit
0b09ae45fa
@ -292,6 +292,7 @@
|
|||||||
vlstill = "Vladimír Štill <xstill@fi.muni.cz>";
|
vlstill = "Vladimír Štill <xstill@fi.muni.cz>";
|
||||||
vmandela = "Venkateswara Rao Mandela <venkat.mandela@gmail.com>";
|
vmandela = "Venkateswara Rao Mandela <venkat.mandela@gmail.com>";
|
||||||
vozz = "Oliver Hunt <oliver.huntuk@gmail.com>";
|
vozz = "Oliver Hunt <oliver.huntuk@gmail.com>";
|
||||||
|
wedens = "wedens <kirill.wedens@gmail.com>";
|
||||||
winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>";
|
winden = "Antonio Vargas Gonzalez <windenntw@gmail.com>";
|
||||||
wizeman = "Ricardo M. Correia <rcorreia@wizy.org>";
|
wizeman = "Ricardo M. Correia <rcorreia@wizy.org>";
|
||||||
wjlroe = "William Roe <willroe@gmail.com>";
|
wjlroe = "William Roe <willroe@gmail.com>";
|
||||||
|
21
pkgs/applications/window-managers/kbdd/default.nix
Normal file
21
pkgs/applications/window-managers/kbdd/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchgit, pkgconfig, dbus_glib, autoreconfHook, xorg }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "kbdd";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = https://github.com/qnikst/kbdd;
|
||||||
|
rev = "47dee0232f157cd865e43d92005a2ba107f6fd75";
|
||||||
|
sha256 = "1b9a66d216326a9759cad26393fbf8259fe7a0c2dd1075047fc989f0e52d969f";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig xorg.libX11 dbus_glib autoreconfHook ];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1969,6 +1969,8 @@ let
|
|||||||
|
|
||||||
kalibrate-rtl = callPackage ../tools/misc/kalibrate-rtl { };
|
kalibrate-rtl = callPackage ../tools/misc/kalibrate-rtl { };
|
||||||
|
|
||||||
|
kbdd = callPackage ../applications/window-managers/kbdd { };
|
||||||
|
|
||||||
kdbplus = callPackage_i686 ../applications/misc/kdbplus { };
|
kdbplus = callPackage_i686 ../applications/misc/kdbplus { };
|
||||||
|
|
||||||
keepalived = callPackage ../tools/networking/keepalived { };
|
keepalived = callPackage ../tools/networking/keepalived { };
|
||||||
|
Loading…
Reference in New Issue
Block a user