pnmixer: 2014-07-24 -> 2016-04-23

+14 -7
+14 -7
pkgs/tools/audio/pnmixer/default.nix
··· 1 - { stdenv, fetchgit, alsaLib, pkgconfig, gtk3, glibc, autoconf, automake, libnotify, libX11, gettext }: 1 + { stdenv, fetchFromGitHub, alsaLib, pkgconfig, gtk3, glibc, autoconf, automake, libnotify, libX11, intltool }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "pnmixer-2014-07-24"; 4 + name = "pnmixer-${version}"; 5 + version = "2016-04-23"; 5 6 6 - src = fetchgit { 7 - url = "git://github.com/nicklan/pnmixer.git"; 8 - rev = "1e09a075c0c63d8b161b13ea92528a798bdb464a"; 9 - sha256 = "15k689xycpc6pvq9vgg9ak92b9sg09dh4yrh83kjcaws63alrzl5"; 7 + src = fetchFromGitHub { 8 + owner = "nicklan"; 9 + repo = "pnmixer"; 10 + rev = "cb20096716dbb5440b6560d81108d9c8f7188c48"; 11 + sha256 = "17gl5fb3hpdgxyys8h5k3nraw7qdyqv9k9kz8ykr5h7gg29nxy66"; 10 12 }; 11 13 14 + nativeBuildInputs = [ 15 + pkgconfig autoconf automake intltool 16 + ]; 17 + 12 18 buildInputs = [ 13 - alsaLib pkgconfig gtk3 glibc autoconf automake libnotify libX11 gettext 19 + alsaLib gtk3 glibc libnotify libX11 14 20 ]; 15 21 16 22 preConfigure = '' ··· 21 27 NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; 22 28 23 29 meta = with stdenv.lib; { 30 + homepage = https://github.com/nicklan/pnmixer; 24 31 description = "ALSA mixer for the system tray"; 25 32 license = licenses.gpl3; 26 33 maintainers = with maintainers; [ campadrenalin ];