summary refs log tree commit diff
path: root/pkgs/tools/misc/ltunify/default.nix
blob: 0329581bfaab31f93664c262c5ade41046f05dbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchgit }:

stdenv.mkDerivation rec {
  name = "ltunify-20140331";

  src = fetchgit {
    url = "https://git.lekensteyn.nl/ltunify.git";
    rev = "c3a263ff97bcd31e96abbfed33d066f8d2778f58";
    sha256 = "0zjw064fl9f73ppl9c37wsfhp6296yx65m1gis2n2ia6arlnh45q";
  };

  makeFlags = [ "DESTDIR=$(out)" "bindir=/bin" ];

  meta = with stdenv.lib; {
    description = "Tool for working with Logitech Unifying receivers and devices";
    homepage = https://lekensteyn.nl/logitech-unifying.html;
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    maintainers = [ maintainers.abbradar ];
  };
}