g500-control: Add myself as maintainer

Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
This commit is contained in:
Moritz Ulrich 2013-11-29 01:10:01 +01:00
parent 69c132ae9c
commit c71d6f3b1a

View File

@ -1,6 +1,6 @@
{stdenv, fetchurl, coreutils}: { stdenv, fetchurl }:
stdenv.mkDerivation rec { stdenv.mkDerivation {
name = "g500-control-0.0.1"; name = "g500-control-0.0.1";
src = fetchurl { src = fetchurl {
@ -8,10 +8,8 @@ stdenv.mkDerivation rec {
sha256 = "1xlg9lpxnk3228k81y1i6jjh4df1p4jh64g54w969g6a6v6dazvb"; sha256 = "1xlg9lpxnk3228k81y1i6jjh4df1p4jh64g54w969g6a6v6dazvb";
}; };
buildInputs = [ coreutils ];
unpackPhase = '' unpackPhase = ''
mkdir -pv g500-control mkdir -p g500-control
tar -C g500-control/ -xf $src tar -C g500-control/ -xf $src
''; '';
@ -21,7 +19,7 @@ stdenv.mkDerivation rec {
''; '';
installPhase = '' installPhase = ''
mkdir -pv $out/bin/ mkdir -p $out/bin/
cp g500-control $out/bin/ cp g500-control $out/bin/
''; '';
@ -30,6 +28,7 @@ stdenv.mkDerivation rec {
description = "Configure Logitech G500's internal profile under Linux"; description = "Configure Logitech G500's internal profile under Linux";
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
}; };
} }