nixpkgs/pkgs/desktops/cinnamon/nemo/default.nix

79 lines
1.3 KiB
Nix
Raw Normal View History

2020-01-20 02:56:38 +01:00
{ fetchFromGitHub
, fetchpatch
, glib
, gobject-introspection
, meson
, ninja
2021-01-17 03:21:50 +01:00
, pkg-config
2021-11-29 17:34:50 +01:00
, lib
, stdenv
2020-01-20 02:56:38 +01:00
, wrapGAppsHook
, libxml2
, gtk3
, libnotify
, gvfs
2020-01-20 02:56:38 +01:00
, cinnamon-desktop
, xapps
, libexif
, exempi
, intltool
, shared-mime-info
, cinnamon-translations
2021-05-31 14:33:44 +02:00
, libgsf
2020-01-20 02:56:38 +01:00
}:
stdenv.mkDerivation rec {
pname = "nemo";
2022-02-12 19:31:06 +01:00
version = "5.2.4";
2020-01-20 02:56:38 +01:00
# TODO: add plugins support (see https://github.com/NixOS/nixpkgs/issues/78327)
src = fetchFromGitHub {
owner = "linuxmint";
repo = pname;
rev = version;
2022-02-12 19:31:06 +01:00
sha256 = "sha256-v63dFiBKtLCmRnwJ6u814lSv+tfPG+IIJtcWCnOEZjk=";
2020-01-20 02:56:38 +01:00
};
outputs = [ "out" "dev" ];
buildInputs = [
glib
gtk3
libnotify
cinnamon-desktop
libxml2
xapps
libexif
exempi
gvfs
2020-01-20 02:56:38 +01:00
gobject-introspection
2021-05-31 14:33:44 +02:00
libgsf
2020-01-20 02:56:38 +01:00
];
nativeBuildInputs = [
meson
2021-01-17 03:21:50 +01:00
pkg-config
2020-01-20 02:56:38 +01:00
ninja
wrapGAppsHook
intltool
shared-mime-info
];
mesonFlags = [
# TODO: https://github.com/NixOS/nixpkgs/issues/36468
"-Dc_args=-I${glib.dev}/include/gio-unix-2.0"
# use locales from cinnamon-translations
"--localedir=${cinnamon-translations}/share/locale"
2020-01-20 02:56:38 +01:00
];
meta = with lib; {
2020-01-20 02:56:38 +01:00
homepage = "https://github.com/linuxmint/nemo";
description = "File browser for Cinnamon";
license = [ licenses.gpl2 licenses.lgpl2 ];
platforms = platforms.linux;
maintainers = teams.cinnamon.members;
2020-01-20 02:56:38 +01:00
};
}