mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
libfm: 1.3.0.2 → 1.3.1
This commit is contained in:
parent
425355b07b
commit
1c041f5b0f
@ -9,23 +9,29 @@ stdenv.mkDerivation rec {
|
||||
name = if extraOnly
|
||||
then "libfm-extra-${version}"
|
||||
else "libfm-${version}";
|
||||
version = "1.3.0.2";
|
||||
version = "1.3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/pcmanfm/libfm-${version}.tar.xz";
|
||||
sha256 = "0wkwbi1nyvqza3r1dhrq846axiiq0fy0dqgngnagh76fjrwnzl0q";
|
||||
sha256 = "1r6gl49xrykldwz8y4h2s7gjarxigg3bbkrj0gphxjj1vr5j9ccn";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ vala pkgconfig intltool ];
|
||||
buildInputs = [ glib gtk pango ] ++ optional (!extraOnly) menu-cache;
|
||||
|
||||
configureFlags = optional extraOnly "--with-extra-only"
|
||||
configureFlags = [
|
||||
"--sysconfdir=/etc"
|
||||
] ++ optional extraOnly "--with-extra-only"
|
||||
++ optional withGtk3 "--with-gtk=3";
|
||||
|
||||
installFlags = [
|
||||
"sysconfdir=${placeholder "out"}/etc"
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://blog.lxde.org/?cat=28/;
|
||||
homepage = https://blog.lxde.org/category/pcmanfm/;
|
||||
license = licenses.lgpl21Plus;
|
||||
description = "A glib-based library for file management";
|
||||
maintainers = [ maintainers.ttuegel ];
|
||||
|
Loading…
Reference in New Issue
Block a user