Remove g500-control

Sources no longer available
This commit is contained in:
Tim Steinbach 2016-11-04 11:30:17 -04:00
parent 198a69fcb7
commit 3bb889c34b
No known key found for this signature in database
GPG key ID: 83FF2ACAEB6C2D24
2 changed files with 0 additions and 36 deletions

View file

@ -1,34 +0,0 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "g500-control-0.0.1";
src = fetchurl {
url = "http://g500-control.googlecode.com/files/g500_control_0.0.1.tar.gz";
sha256 = "1xlg9lpxnk3228k81y1i6jjh4df1p4jh64g54w969g6a6v6dazvb";
};
unpackPhase = ''
mkdir -p g500-control
tar -C g500-control/ -xf $src
'';
buildPhase = ''
cd g500-control
gcc -o g500-control *.c
'';
installPhase = ''
mkdir -p $out/bin/
cp g500-control $out/bin/
'';
meta = {
homepage = http://code.google.com/p/g500-control/;
description = "Configure Logitech G500's internal profile under Linux";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
};
}

View file

@ -1726,8 +1726,6 @@ in
uni2ascii = callPackage ../tools/text/uni2ascii { };
g500-control = callPackage ../tools/misc/g500-control { };
galculator = callPackage ../applications/misc/galculator {
gtk = gtk3;
};