77 lines
1.7 KiB
Nix
77 lines
1.7 KiB
Nix
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja, gettext, vala
|
|
, python3, desktop-file-utils, intltool, libcanberra, gtk3, libgee, granite
|
|
, libnotify, libunity, pango, plank, bamf, sqlite, libdbusmenu-gtk3, zeitgeist
|
|
, glib-networking, elementary-icon-theme, gobject-introspection, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "files";
|
|
version = "4.1.3";
|
|
|
|
name = "elementary-${pname}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0vz6m6kqm9r1scj1jdljbzh019skj8fhf916011wkdfzdpc1zlac";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = pantheon.updateScript {
|
|
repoName = pname;
|
|
attrPath = "elementary-${pname}";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
desktop-file-utils
|
|
gettext
|
|
glib-networking
|
|
gobject-introspection
|
|
intltool
|
|
meson
|
|
ninja
|
|
pkgconfig
|
|
python3
|
|
vala
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
bamf
|
|
elementary-icon-theme
|
|
granite
|
|
gtk3
|
|
libcanberra
|
|
libdbusmenu-gtk3
|
|
libgee
|
|
libnotify
|
|
libunity
|
|
pango
|
|
plank
|
|
sqlite
|
|
zeitgeist
|
|
];
|
|
|
|
patches = [ ./hardcode-gsettings.patch ];
|
|
|
|
postPatch = ''
|
|
chmod +x meson/post_install.py
|
|
patchShebangs meson/post_install.py
|
|
|
|
substituteInPlace filechooser-module/FileChooserDialog.vala --subst-var-by ELEMENTARY_FILES_GSETTINGS_PATH $out/share/gsettings-schemas/${name}/glib-2.0/schemas
|
|
'';
|
|
|
|
# xdg.mime will create this
|
|
postInstall = ''
|
|
rm $out/share/applications/mimeinfo.cache
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "File browser designed for elementary OS";
|
|
homepage = https://github.com/elementary/files;
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = pantheon.maintainers;
|
|
};
|
|
}
|