83 lines
1.4 KiB
Nix
83 lines
1.4 KiB
Nix
|
{ stdenv
|
||
|
, fetchFromGitHub
|
||
|
, pantheon
|
||
|
, pkgconfig
|
||
|
, meson
|
||
|
, ninja
|
||
|
, vala
|
||
|
, desktop-file-utils
|
||
|
, python3
|
||
|
, gettext
|
||
|
, libxml2
|
||
|
, gtk3
|
||
|
, granite
|
||
|
, libgee
|
||
|
, gst_all_1
|
||
|
, libcanberra
|
||
|
, clutter-gtk
|
||
|
, clutter-gst
|
||
|
, elementary-icon-theme
|
||
|
, appstream
|
||
|
, wrapGAppsHook
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "elementary-camera";
|
||
|
version = "1.0.6";
|
||
|
|
||
|
repoName = "camera";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "elementary";
|
||
|
repo = repoName;
|
||
|
rev = version;
|
||
|
sha256 = "13jg224h2436swd6kdkfs22icg0ja9lshvxwg5bqnb5fshspkjba";
|
||
|
};
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = pantheon.updateScript {
|
||
|
attrPath = "pantheon.${pname}";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
appstream
|
||
|
desktop-file-utils
|
||
|
gettext
|
||
|
libxml2
|
||
|
meson
|
||
|
ninja
|
||
|
pkgconfig
|
||
|
python3
|
||
|
vala
|
||
|
wrapGAppsHook
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
clutter-gst
|
||
|
clutter-gtk
|
||
|
elementary-icon-theme
|
||
|
granite
|
||
|
gst_all_1.gst-plugins-bad
|
||
|
gst_all_1.gst-plugins-base
|
||
|
gst_all_1.gst-plugins-good
|
||
|
gst_all_1.gstreamer
|
||
|
gtk3
|
||
|
libcanberra
|
||
|
libgee
|
||
|
];
|
||
|
|
||
|
postPatch = ''
|
||
|
chmod +x meson/post_install.py
|
||
|
patchShebangs meson/post_install.py
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Camera app designed for elementary OS";
|
||
|
homepage = "https://github.com/elementary/camera";
|
||
|
license = licenses.gpl2Plus;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = pantheon.maintainers;
|
||
|
};
|
||
|
}
|