solaar: track latest release and set correct repo owner

Update project homepage

Drop 'unstable' package name attribute
This commit is contained in:
ysander 2019-08-03 16:28:49 +02:00 committed by Bjørn Forsman
parent 35fe50352f
commit 84d4243ccc

View File

@ -1,17 +1,14 @@
{ fetchFromGitHub, lib, gobject-introspection, gtk3, python3Packages }: { fetchFromGitHub, lib, gobject-introspection, gtk3, python3Packages }:
# Although we copy in the udev rules here, you probably just want to use logitech-udev-rules instead of # 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 # adding this to services.udev.packages on NixOS
python3Packages.buildPythonApplication rec {
python3Packages.buildPythonApplication { pname = "solaar";
pname = "solaar-unstable"; version = "1.0.1";
version = "2019-01-30";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pwr"; owner = "pwr-Solaar";
repo = "Solaar"; repo = "Solaar";
rev = "c07c115ee379e82db84283aaa29dc53df033a8c8"; rev = "${version}";
sha256 = "0xg181xcwzzs8pdqvjrkjyaaga7ir93hzjvd17j9g3ns8xfj2mvr"; sha256 = "1ni3aimpl9vyhwzi61mvm8arkii52cmb6bzjma9cnkjyx328pkid";
}; };
propagatedBuildInputs = with python3Packages; [ gobject-introspection gtk3 pygobject3 pyudev ]; propagatedBuildInputs = with python3Packages; [ gobject-introspection gtk3 pygobject3 pyudev ];
@ -28,7 +25,6 @@ python3Packages.buildPythonApplication {
''; '';
enableParallelBuilding = true; enableParallelBuilding = true;
meta = with lib; { meta = with lib; {
description = "Linux devices manager for the Logitech Unifying Receiver"; description = "Linux devices manager for the Logitech Unifying Receiver";
longDescription = '' longDescription = ''
@ -43,7 +39,7 @@ python3Packages.buildPythonApplication {
To be able to use it, make sure you have access to /dev/hidraw* files. To be able to use it, make sure you have access to /dev/hidraw* files.
''; '';
license = licenses.gpl2; license = licenses.gpl2;
homepage = https://pwr.github.io/Solaar/; homepage = https://pwr-solaar.github.io/Solaar/;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ spinus ysndr ]; maintainers = with maintainers; [ spinus ysndr ];
}; };