Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
73 lines
1.5 KiB
Nix
73 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
autoreconfHook,
|
|
gtk-doc,
|
|
glib,
|
|
intltool,
|
|
menu-cache,
|
|
pango,
|
|
pkg-config,
|
|
vala,
|
|
extraOnly ? false,
|
|
withGtk3 ? false,
|
|
gtk2,
|
|
gtk3,
|
|
}:
|
|
|
|
let
|
|
gtk = if withGtk3 then gtk3 else gtk2;
|
|
inherit (lib) optional optionalString;
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = if extraOnly then "libfm-extra" else "libfm";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxde";
|
|
repo = "libfm";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-dmu5ygPuZe2YWAzIVPx5zskQeB51hXcLbMczxWgCr78=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
vala
|
|
pkg-config
|
|
intltool
|
|
gtk-doc
|
|
];
|
|
buildInputs = [
|
|
glib
|
|
gtk
|
|
pango
|
|
]
|
|
++ optional (!extraOnly) menu-cache;
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc"
|
|
]
|
|
++ optional extraOnly "--with-extra-only"
|
|
++ optional withGtk3 "--with-gtk=3";
|
|
|
|
installFlags = [ "sysconfdir=${placeholder "out"}/etc" ];
|
|
|
|
# libfm-extra is pulled in by menu-cache and thus leads to a collision for libfm
|
|
postInstall = optionalString (!extraOnly) ''
|
|
rm $out/lib/libfm-extra.so $out/lib/libfm-extra.so.* $out/lib/libfm-extra.la $out/lib/pkgconfig/libfm-extra.pc
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
homepage = "https://blog.lxde.org/category/pcmanfm/";
|
|
license = lib.licenses.lgpl21Plus;
|
|
description = "Glib-based library for file management";
|
|
maintainers = with lib.maintainers; [ ttuegel ];
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
};
|
|
})
|