nixpkgs/pkgs/development/libraries/libfm/default.nix
R. RyanTM 1c67dc2f35 libfm-extra: 1.3.0 -> 1.3.0.2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/libfm-extra/versions.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.3.0.2 with grep in /nix/store/5am33wnj853b12vfyyccsm213yv686kg-libfm-extra-1.3.0.2
- directory tree listing: https://gist.github.com/21b078659a3a745638c69b3d9ef063c4
2018-05-07 02:08:52 -07:00

36 lines
1.1 KiB
Nix

{ stdenv, fetchurl, glib, intltool, menu-cache, pango, pkgconfig, vala_0_34
, extraOnly ? false
, withGtk3 ? false, gtk2, gtk3 }:
let
gtk = if withGtk3 then gtk3 else gtk2;
inherit (stdenv.lib) optional;
in
stdenv.mkDerivation rec {
name = if extraOnly
then "libfm-extra-${version}"
else "libfm-${version}";
version = "1.3.0.2";
src = fetchurl {
url = "mirror://sourceforge/pcmanfm/libfm-${version}.tar.xz";
sha256 = "0wkwbi1nyvqza3r1dhrq846axiiq0fy0dqgngnagh76fjrwnzl0q";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib gtk intltool pango vala_0_34 ]
++ optional (!extraOnly) menu-cache;
configureFlags = [ (optional extraOnly "--with-extra-only")
(optional withGtk3 "--with-gtk=3") ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://blog.lxde.org/?cat=28/;
license = licenses.lgpl21Plus;
description = "A glib-based library for file management";
maintainers = [ maintainers.ttuegel ];
platforms = platforms.linux ++ platforms.darwin;
};
}