cinnamon.pix: init at 2.6.5

This commit is contained in:
Maciej Krüger 2021-11-23 03:03:53 +01:00
parent db93a29ef3
commit df84399f53
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F
2 changed files with 76 additions and 0 deletions

View File

@ -30,6 +30,7 @@ lib.makeScope pkgs.newScope (self: with self; {
mint-x-icons = callPackage ./mint-x-icons { }; mint-x-icons = callPackage ./mint-x-icons { };
mint-y-icons = callPackage ./mint-y-icons { }; mint-y-icons = callPackage ./mint-y-icons { };
muffin = callPackage ./muffin { }; muffin = callPackage ./muffin { };
pix = callPackage ./pix { };
xapps = callPackage ./xapps { }; xapps = callPackage ./xapps { };
warpinator = callPackage ./warpinator { }; warpinator = callPackage ./warpinator { };
xreader = callPackage ./xreader { }; xreader = callPackage ./xreader { };

View File

@ -0,0 +1,75 @@
{ stdenv
, lib
, fetchFromGitHub
, autoreconfHook
, cinnamon-desktop
, file
, gdk-pixbuf
, glib
, gobject-introspection
, gtk-doc
, gtk3
, intltool
, itstool
, libtool
, libxml2
, pkg-config
, shared-mime-info
, wrapGAppsHook
, xapps
, yelp-tools
, libsecret
, webkitgtk
, libwebp
, librsvg
, json-glib
, gnome
, clutter
}:
stdenv.mkDerivation rec {
pname = "pix";
version = "2.6.5";
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
sha256 = "qBF5lc7ZNwuTr6x4c4pJA6a7oXqOYsYA1lpTmQkylT0=";
};
nativeBuildInputs = [
wrapGAppsHook
autoreconfHook
cinnamon-desktop
gdk-pixbuf
gnome.gnome-common
gobject-introspection
gtk-doc
intltool
itstool
libtool
pkg-config
yelp-tools
];
buildInputs = [
glib
gtk3
xapps
libsecret
webkitgtk
libwebp
librsvg
json-glib
clutter
];
meta = with lib; {
description = "A generic image viewer from Linux Mint";
homepage = "https://github.com/linuxmint/pix";
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = teams.cinnamon.members;
};
}