mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
ltunify: 20140331 -> 20180330
This commit is contained in:
parent
ce7db15804
commit
5751d9d475
|
@ -1,12 +1,17 @@
|
|||
{ stdenv, fetchgit }:
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
# Although we copy in the udev rules here, you probably just want to use logitech-udev-rules instead of
|
||||
# adding this to services.udev.packages on NixOS
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ltunify-20140331";
|
||||
name = "ltunify-${version}";
|
||||
version = "unstable-20180330";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.lekensteyn.nl/ltunify.git";
|
||||
rev = "c3a263ff97bcd31e96abbfed33d066f8d2778f58";
|
||||
sha256 = "04g7mmljkx8643k53yd9x4k2ndrr98w7fbq10qn8ll6didkph3v8";
|
||||
src = fetchFromGitHub {
|
||||
owner = "Lekensteyn";
|
||||
repo = "ltunify";
|
||||
rev = "f664d1d41d5c4beeac5b81e485c3498f13109db7";
|
||||
sha256 = "07sqhih9jmm7vgiwqsjzihd307cj7l096sxjl25p7nwr1q4180wv";
|
||||
};
|
||||
|
||||
makeFlags = [ "DESTDIR=$(out)" "bindir=/bin" ];
|
||||
|
@ -15,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||
description = "Tool for working with Logitech Unifying receivers and devices";
|
||||
homepage = https://lekensteyn.nl/logitech-unifying.html;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.abbradar ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue