nixpkgs/pkgs/applications/misc/ltwheelconf/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

29 lines
713 B
Nix

{ stdenv, libusb1, pkgconfig, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "ltwheelconf";
version = "0.2.7";
src = fetchFromGitHub {
owner = "thk";
repo = "ltwheelconf";
rev = "df55451f059d593b0259431662612ab5c2bef859";
sha256 = "1fsz7k73yln987gcx1jvb5irxfbp1x2c457a60a8yap27nkp5y2w";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libusb1 ];
installPhase = ''
mkdir -p $out/bin
cp ltwheelconf $out/bin
'';
meta = with stdenv.lib; {
homepage = https://github.com/thk/LTWheelConf;
description = "Logitech wheels configuration tool";
license = licenses.gpl3;
maintainers = [ maintainers.ebzzry ];
platforms = platforms.linux;
};
}