3
0
Fork 0
forked from mirrors/nixpkgs

lollypop: init at 0.9.514

This commit is contained in:
worldofpeace 2018-06-15 20:17:01 -04:00
parent 07d23845c3
commit 9ee39c5946
2 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1,58 @@
{ stdenv, fetchgit, meson, ninja, pkgconfig, wrapGAppsHook
, appstream-glib, desktop-file-utils, gobjectIntrospection
, python36Packages, gnome3, glib, gst_all_1 }:
stdenv.mkDerivation rec {
version = "0.9.514";
name = "lollypop-${version}";
src = fetchgit {
url = "https://gitlab.gnome.org/World/lollypop";
rev = "refs/tags/${version}";
fetchSubmodules = true;
sha256 = "0ny8c5apldhhrcjl3wz01pbyjvf60b7xy39mpvbshvdpnqlnqsca";
};
nativeBuildInputs = with python36Packages; [
desktop-file-utils
meson
ninja
pkgconfig
wrapGAppsHook
wrapPython
];
buildInputs = [
appstream-glib glib gobjectIntrospection
] ++ (with gnome3; [
easytag gsettings_desktop_schemas gtk3 libsecret libsoup totem-pl-parser
]) ++ (with gst_all_1; [
gst-libav gst-plugins-bad gst-plugins-base gst-plugins-good gst-plugins-ugly
gstreamer
]);
pythonPath = with python36Packages; [
beautifulsoup4
gst-python
pillow
pycairo
pydbus
pygobject3
pylast
];
postFixup = "wrapPythonPrograms";
postPatch = ''
chmod +x ./meson_post_install.py
patchShebangs ./meson_post_install.py
'';
meta = with stdenv.lib; {
description = "A modern music player for GNOME";
homepage = https://wiki.gnome.org/Apps/Lollypop;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ worldofpeace ];
platforms = platforms.linux;
};
}

View file

@ -16195,6 +16195,8 @@ with pkgs;
linssid = libsForQt5.callPackage ../applications/networking/linssid { };
lollypop = callPackage ../applications/audio/lollypop { };
m32edit = callPackage ../applications/audio/midas/m32edit.nix {};
manuskript = callPackage ../applications/editors/manuskript { };