mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
playerctl: init at 0.4.2
This commit is contained in:
parent
7fcecec58b
commit
4ec4666762
29
pkgs/tools/audio/playerctl/default.nix
Normal file
29
pkgs/tools/audio/playerctl/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, which, gnome, glib,
|
||||||
|
pkgconfig, gobjectIntrospection }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "playerctl";
|
||||||
|
version = "0.4.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "acrisci";
|
||||||
|
repo = "playerctl";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0dy6wc7qr00p53hlhpbg9x40w4ag95r2i7r1nsyb4ym3wzrvskzh";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
which autoconf automake libtool gnome.gtkdoc glib pkgconfig
|
||||||
|
gobjectIntrospection
|
||||||
|
];
|
||||||
|
|
||||||
|
preConfigure = "./autogen.sh";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Command-line utility and library for controlling media players that implement MPRIS";
|
||||||
|
homepage = https://github.com/acrisci/playerctl;
|
||||||
|
license = licenses.lgpl3;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ puffnfresh ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -929,6 +929,8 @@ let
|
||||||
pynotify = pythonPackages.notify;
|
pynotify = pythonPackages.notify;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
playerctl = callPackage ../tools/audio/playerctl { };
|
||||||
|
|
||||||
syscall_limiter = callPackage ../os-specific/linux/syscall_limiter {};
|
syscall_limiter = callPackage ../os-specific/linux/syscall_limiter {};
|
||||||
|
|
||||||
syslogng = callPackage ../tools/system/syslog-ng { };
|
syslogng = callPackage ../tools/system/syslog-ng { };
|
||||||
|
|
Loading…
Reference in a new issue