fae6f22106
User may install icon theme of their choices. The icons are no longer picked up by wrapGAppsHook by default anyway.
93 lines
1.5 KiB
Nix
93 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
, pkg-config
|
|
, meson
|
|
, ninja
|
|
, gettext
|
|
, vala
|
|
, python3
|
|
, desktop-file-utils
|
|
, libcanberra
|
|
, gtk3
|
|
, glib
|
|
, libgee
|
|
, libhandy
|
|
, granite
|
|
, libnotify
|
|
, pango
|
|
, elementary-dock
|
|
, bamf
|
|
, sqlite
|
|
, zeitgeist
|
|
, glib-networking
|
|
, libcloudproviders
|
|
, libgit2-glib
|
|
, wrapGAppsHook
|
|
, systemd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elementary-files";
|
|
version = "6.1.2";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = "files";
|
|
rev = version;
|
|
sha256 = "sha256-g9g4wJXjjudk4Qt96XGUiV/X86Ae2lqhM+psh9h+XFE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
desktop-file-utils
|
|
gettext
|
|
glib-networking
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
vala
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
bamf
|
|
elementary-dock
|
|
glib
|
|
granite
|
|
gtk3
|
|
libcanberra
|
|
libcloudproviders
|
|
libgee
|
|
libgit2-glib
|
|
libhandy
|
|
libnotify
|
|
pango
|
|
sqlite
|
|
systemd
|
|
zeitgeist
|
|
];
|
|
|
|
postPatch = ''
|
|
chmod +x meson/post_install.py
|
|
patchShebangs meson/post_install.py
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
attrPath = "pantheon.${pname}";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "File browser designed for elementary OS";
|
|
homepage = "https://github.com/elementary/files";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.pantheon.members;
|
|
mainProgram = "io.elementary.files";
|
|
};
|
|
}
|