mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
cinnamon.pix: init at 2.6.5
This commit is contained in:
parent
db93a29ef3
commit
df84399f53
@ -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 { };
|
||||||
|
75
pkgs/desktops/cinnamon/pix/default.nix
Normal file
75
pkgs/desktops/cinnamon/pix/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user