Merge master into closure-size

The kde-5 stuff still didn't merge well.
I hand-fixed what I saw, but there may be more problems.
This commit is contained in:
Vladimír Čunát
2016-03-08 09:58:19 +01:00
1276 changed files with 78548 additions and 29166 deletions
@@ -1,6 +1,6 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonPackages }:
{ stdenv, buildPythonApplication, fetchFromGitHub, pythonPackages }:
buildPythonPackage rec {
buildPythonApplication rec {
name = "beets-alternatives-${version}";
version = "0.8.2";
+3 -3
View File
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, writeScript, glibcLocales
, buildPythonPackage, pythonPackages, python, imagemagick
, buildPythonApplication, pythonPackages, python, imagemagick
, enableAcousticbrainz ? true
, enableAcoustid ? true
@@ -68,7 +68,7 @@ let
testShell = "${bashInteractive}/bin/bash --norc";
completion = "${bashCompletion}/share/bash-completion/bash_completion";
in buildPythonPackage rec {
in buildPythonApplication rec {
name = "beets-${version}";
version = "1.3.17";
namePrefix = "";
@@ -103,7 +103,7 @@ in buildPythonPackage rec {
++ optional enableThumbnails pythonPackages.pyxdg
++ optional enableWeb pythonPackages.flask
++ optional enableAlternatives (import ./alternatives-plugin.nix {
inherit stdenv buildPythonPackage pythonPackages fetchFromGitHub;
inherit stdenv buildPythonApplication pythonPackages fetchFromGitHub;
});
buildInputs = with pythonPackages; [
+29
View 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 ];
};
}