ncpamixer: cleanup, add SuperSandro2000 as maintainer

This commit is contained in:
Sandro Jäckel
2021-02-12 14:09:55 +01:00
parent 76ab4bd69c
commit 5d42322184
@@ -1,7 +1,6 @@
{ lib, stdenv, fetchFromGitHub, cmake, ncurses, libpulseaudio, pkg-config }: { lib, stdenv, fetchFromGitHub, cmake, ncurses, libpulseaudio, pkg-config }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "ncpamixer"; pname = "ncpamixer";
version = "1.3.3.1"; version = "1.3.3.1";
@@ -12,15 +11,12 @@ stdenv.mkDerivation rec {
sha256 = "1v3bz0vpgh18257hdnz3yvbnl51779g1h5b265zgc21ks7m1jw5z"; sha256 = "1v3bz0vpgh18257hdnz3yvbnl51779g1h5b265zgc21ks7m1jw5z";
}; };
buildInputs = [ ncurses libpulseaudio ];
nativeBuildInputs = [ cmake pkg-config ]; nativeBuildInputs = [ cmake pkg-config ];
configurePhase = '' buildInputs = [ ncurses libpulseaudio ];
make PREFIX=$out build/Makefile
'';
buildPhase = '' configurePhase = ''
make build make PREFIX=$out USE_WIDE=1 RELEASE=1 build/Makefile
''; '';
meta = with lib; { meta = with lib; {
@@ -28,6 +24,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/fulhax/ncpamixer"; homepage = "https://github.com/fulhax/ncpamixer";
license = licenses.mit; license = licenses.mit;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ StijnDW ]; maintainers = with maintainers; [ StijnDW SuperSandro2000 ];
}; };
} }