lol
1{ stdenv, fetchgit }:
2
3stdenv.mkDerivation rec {
4 name = "ltunify-20140331";
5
6 src = fetchgit {
7 url = "https://git.lekensteyn.nl/ltunify.git";
8 rev = "c3a263ff97bcd31e96abbfed33d066f8d2778f58";
9 sha256 = "04g7mmljkx8643k53yd9x4k2ndrr98w7fbq10qn8ll6didkph3v8";
10 };
11
12 makeFlags = [ "DESTDIR=$(out)" "bindir=/bin" ];
13
14 meta = with stdenv.lib; {
15 description = "Tool for working with Logitech Unifying receivers and devices";
16 homepage = https://lekensteyn.nl/logitech-unifying.html;
17 license = licenses.gpl3Plus;
18 platforms = platforms.linux;
19 maintainers = [ maintainers.abbradar ];
20 };
21}