nixpkgs/pkgs/applications/audio/ponymix/default.nix

27 lines
726 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libpulseaudio, libnotify, pkg-config }:
2015-07-27 16:52:53 +00:00
stdenv.mkDerivation rec {
pname = "ponymix";
2016-07-23 13:19:26 +00:00
version = "5";
2016-10-07 06:18:34 +00:00
src = fetchFromGitHub {
owner = "falconindy";
repo = "ponymix";
rev = version;
sha256 = "08yp7fprmzm6px5yx2rvzri0l60bra5h59l26pn0k071a37ks1rb";
2015-07-27 16:52:53 +00:00
};
buildInputs = [ libpulseaudio libnotify ];
nativeBuildInputs = [ pkg-config ];
2015-07-27 16:52:53 +00:00
postPatch = ''substituteInPlace Makefile --replace "\$(DESTDIR)/usr" "$out"'';
meta = with lib; {
2015-07-27 16:52:53 +00:00
description = "CLI PulseAudio Volume Control";
homepage = "https://github.com/falconindy/ponymix";
2016-10-07 06:18:34 +00:00
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ ericsagnes ];
2015-07-27 16:52:53 +00:00
};
}