tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pnmixer: 2014-07-24 -> 2016-04-23
José Romildo Malaquias
9 years ago
d3c29a41
7996c54a
+14
-7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
audio
pnmixer
default.nix
+14
-7
pkgs/tools/audio/pnmixer/default.nix
···
1
-
{ stdenv, fetchgit, alsaLib, pkgconfig, gtk3, glibc, autoconf, automake, libnotify, libX11, gettext }:
2
3
stdenv.mkDerivation rec {
4
-
name = "pnmixer-2014-07-24";
0
5
6
-
src = fetchgit {
7
-
url = "git://github.com/nicklan/pnmixer.git";
8
-
rev = "1e09a075c0c63d8b161b13ea92528a798bdb464a";
9
-
sha256 = "15k689xycpc6pvq9vgg9ak92b9sg09dh4yrh83kjcaws63alrzl5";
0
10
};
11
0
0
0
0
12
buildInputs = [
13
-
alsaLib pkgconfig gtk3 glibc autoconf automake libnotify libX11 gettext
14
];
15
16
preConfigure = ''
···
21
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
22
23
meta = with stdenv.lib; {
0
24
description = "ALSA mixer for the system tray";
25
license = licenses.gpl3;
26
maintainers = with maintainers; [ campadrenalin ];
···
1
+
{ stdenv, fetchFromGitHub, alsaLib, pkgconfig, gtk3, glibc, autoconf, automake, libnotify, libX11, intltool }:
2
3
stdenv.mkDerivation rec {
4
+
name = "pnmixer-${version}";
5
+
version = "2016-04-23";
6
7
+
src = fetchFromGitHub {
8
+
owner = "nicklan";
9
+
repo = "pnmixer";
10
+
rev = "cb20096716dbb5440b6560d81108d9c8f7188c48";
11
+
sha256 = "17gl5fb3hpdgxyys8h5k3nraw7qdyqv9k9kz8ykr5h7gg29nxy66";
12
};
13
14
+
nativeBuildInputs = [
15
+
pkgconfig autoconf automake intltool
16
+
];
17
+
18
buildInputs = [
19
+
alsaLib gtk3 glibc libnotify libX11
20
];
21
22
preConfigure = ''
···
27
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
28
29
meta = with stdenv.lib; {
30
+
homepage = https://github.com/nicklan/pnmixer;
31
description = "ALSA mixer for the system tray";
32
license = licenses.gpl3;
33
maintainers = with maintainers; [ campadrenalin ];