0b59f4212c
The same way we want them in GNOME in nixpkgs. Didn't touch the greeter expression because I have a branch where it's already rewritten.
109 lines
1.7 KiB
Nix
109 lines
1.7 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, pantheon
|
|
, meson
|
|
, ninja
|
|
, pkgconfig
|
|
, vala
|
|
, desktop-file-utils
|
|
, gtk3
|
|
, libaccounts-glib
|
|
, libexif
|
|
, libgee
|
|
, geocode-glib
|
|
, gexiv2
|
|
, libgphoto2
|
|
, granite
|
|
, gst_all_1
|
|
, libgudev
|
|
, json-glib
|
|
, libraw
|
|
, librest
|
|
, libsoup
|
|
, sqlite
|
|
, python3
|
|
, scour
|
|
, webkitgtk
|
|
, libwebp
|
|
, appstream
|
|
, libunity
|
|
, wrapGAppsHook
|
|
, elementary-icon-theme
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elementary-photos";
|
|
version = "2.6.4";
|
|
|
|
repoName = "photos";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = repoName;
|
|
rev = version;
|
|
sha256 = "17r9658s0pqy6s45ysi3915sm8hpvmsp7cw2jahqvjc61r4qpdc1";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = pantheon.updateScript {
|
|
inherit repoName;
|
|
attrPath = pname;
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream
|
|
desktop-file-utils
|
|
meson
|
|
ninja
|
|
pkgconfig
|
|
python3
|
|
vala
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = with gst_all_1; [
|
|
elementary-icon-theme
|
|
geocode-glib
|
|
gexiv2
|
|
granite
|
|
gst-plugins-bad
|
|
gst-plugins-base
|
|
gst-plugins-good
|
|
gst-plugins-ugly
|
|
gstreamer
|
|
gtk3
|
|
json-glib
|
|
libaccounts-glib
|
|
libexif
|
|
libgee
|
|
libgphoto2
|
|
libgudev
|
|
libraw
|
|
librest
|
|
libsoup
|
|
libunity
|
|
libwebp
|
|
scour
|
|
sqlite
|
|
webkitgtk
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dplugins=false"
|
|
];
|
|
|
|
postPatch = ''
|
|
chmod +x meson/post_install.py
|
|
patchShebangs meson/post_install.py
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Photo viewer and organizer designed for elementary OS";
|
|
homepage = https://github.com/elementary/photos;
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = pantheon.maintainers;
|
|
};
|
|
}
|