nixpkgs/pkgs/development/libraries/menu-cache/default.nix

24 lines
631 B
Nix
Raw Normal View History

{ stdenv, fetchurl, glib, pkgconfig, libfm-extra }:
2014-03-01 19:37:39 +01:00
2016-11-17 20:05:47 +01:00
let name = "menu-cache-1.0.2";
in
2014-03-01 19:37:39 +01:00
stdenv.mkDerivation {
inherit name;
2014-03-01 19:37:39 +01:00
src = fetchurl {
url = "mirror://sourceforge/lxde/${name}.tar.xz";
2016-11-17 20:05:47 +01:00
sha256 = "1m8j40npykfcfqs43kc0fmksal2jfmfi8lnb3mq3xy1lvvrfv0vg";
2014-03-01 19:37:39 +01:00
};
2016-04-29 14:43:01 +02:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib libfm-extra ];
2014-03-01 19:37:39 +01:00
meta = with stdenv.lib; {
homepage = http://blog.lxde.org/?tag=menu-cache;
license = licenses.gpl2Plus;
2014-03-01 19:37:39 +01:00
description = "Library to read freedesktop.org menu files";
maintainers = [ maintainers.ttuegel ];
2017-04-20 23:45:41 +02:00
platforms = platforms.linux ++ platforms.darwin;
2014-03-01 19:37:39 +01:00
};
}