f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
24 lines
631 B
Nix
24 lines
631 B
Nix
{ stdenv, fetchurl, glib, pkgconfig, libfm-extra }:
|
|
|
|
let name = "menu-cache-1.0.2";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit name;
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/lxde/${name}.tar.xz";
|
|
sha256 = "1m8j40npykfcfqs43kc0fmksal2jfmfi8lnb3mq3xy1lvvrfv0vg";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ glib libfm-extra ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://blog.lxde.org/?tag=menu-cache;
|
|
license = licenses.gpl2Plus;
|
|
description = "Library to read freedesktop.org menu files";
|
|
maintainers = [ maintainers.ttuegel ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|