Skip to content

Commit b33b4a7

Browse files
romildojtojnar
authored andcommittedJan 2, 2018
xkbmon: init at 0.1
1 parent d8141bc commit b33b4a7

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
 

Diff for: ‎pkgs/applications/misc/xkbmon/default.nix

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{ stdenv, fetchFromGitHub, libX11 }:
2+
3+
stdenv.mkDerivation rec {
4+
name = "xkbmon-${version}";
5+
version = "0.1";
6+
7+
src = fetchFromGitHub {
8+
owner = "xkbmon";
9+
repo = "xkbmon";
10+
rev = version;
11+
sha256 = "1smyqsd9cpbzqaplm221a8mq0nham6rg6hjsm9g5gph94xmk6d67";
12+
};
13+
14+
buildInputs = [ libX11 ];
15+
16+
installPhase = "install -D -t $out/bin xkbmon";
17+
18+
meta = with stdenv.lib; {
19+
homepage = https://github.com/xkbmon/xkbmon;
20+
description = "Command-line keyboard layout monitor for X11";
21+
license = licenses.gpl3;
22+
platforms = platforms.linux;
23+
maintainers = [ maintainers.romildo ];
24+
};
25+
}

Diff for: ‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -17730,6 +17730,8 @@ with pkgs;
1773017730

1773117731
xkbset = callPackage ../tools/X11/xkbset { };
1773217732

17733+
xkbmon = callPackage ../applications/misc/xkbmon { };
17734+
1773317735
win-spice = callPackage ../applications/virtualization/driver/win-spice { };
1773417736
win-virtio = callPackage ../applications/virtualization/driver/win-virtio { };
1773517737
win-qemu = callPackage ../applications/virtualization/driver/win-qemu { };

0 commit comments

Comments
 (0)
Please sign in to comment.