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

30 lines
873 B
Nix
Raw Normal View History

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