Merge pull request #42083 from worldofpeace/lollypop
lollypop: init at 0.9.514
This commit is contained in:
commit
ecc0de2d8b
58
pkgs/applications/audio/lollypop/default.nix
Normal file
58
pkgs/applications/audio/lollypop/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -16195,6 +16195,8 @@ with pkgs;
|
|||||||
|
|
||||||
linssid = libsForQt5.callPackage ../applications/networking/linssid { };
|
linssid = libsForQt5.callPackage ../applications/networking/linssid { };
|
||||||
|
|
||||||
|
lollypop = callPackage ../applications/audio/lollypop { };
|
||||||
|
|
||||||
m32edit = callPackage ../applications/audio/midas/m32edit.nix {};
|
m32edit = callPackage ../applications/audio/midas/m32edit.nix {};
|
||||||
|
|
||||||
manuskript = callPackage ../applications/editors/manuskript { };
|
manuskript = callPackage ../applications/editors/manuskript { };
|
||||||
|
Loading…
Reference in New Issue
Block a user