nixpkgs/pkgs/development/libraries/libfm/default.nix

30 lines
895 B
Nix
Raw Normal View History

2017-01-23 21:01:33 +00:00
{ stdenv, fetchurl, glib, gtk2, intltool, menu-cache, pango, pkgconfig, vala_0_34
, extraOnly ? false }:
2014-11-14 23:07:00 +00:00
let
inherit (stdenv.lib) optional;
in
2016-04-11 17:41:57 +00:00
stdenv.mkDerivation rec {
name = if extraOnly
then "libfm-extra-${version}"
else "libfm-${version}";
2017-01-23 21:01:33 +00:00
version = "1.2.5";
2016-04-11 17:41:57 +00:00
2014-03-01 18:37:39 +00:00
src = fetchurl {
2016-04-11 17:41:57 +00:00
url = "mirror://sourceforge/pcmanfm/libfm-${version}.tar.xz";
2017-01-23 21:01:33 +00:00
sha256 = "0nlvfwh09gbq8bkbvwnw6iqr918rrs9gc9ljb9pjspyg408bn1n7";
2014-03-01 18:37:39 +00:00
};
2017-01-23 21:01:33 +00:00
buildInputs = [ glib gtk2 intltool pango pkgconfig vala_0_34 ]
++ optional (!extraOnly) menu-cache;
configureFlags = optional extraOnly "--with-extra-only";
2014-03-01 18:37:39 +00:00
meta = with stdenv.lib; {
2014-03-01 18:37:39 +00:00
homepage = "http://blog.lxde.org/?cat=28/";
2014-11-14 23:07:00 +00:00
license = licenses.lgpl21Plus;
2014-03-01 18:37:39 +00:00
description = "A glib-based library for file management";
maintainers = [ maintainers.ttuegel ];
2017-04-20 21:43:04 +00:00
platforms = platforms.linux ++ platforms.darwin;
2014-03-01 18:37:39 +00:00
};
}