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
21 lines
502 B
Nix
21 lines
502 B
Nix
{ stdenv, fetchurl, intltool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lxmenu-data-${version}";
|
|
version = "0.1.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/lxde/${name}.tar.xz";
|
|
sha256 = "9fe3218d2ef50b91190162f4f923d6524c364849f87bcda8b4ed8eb59b80bab8";
|
|
};
|
|
|
|
buildInputs = [ intltool ];
|
|
|
|
meta = {
|
|
homepage = http://lxde.org/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
description = "Freedesktop.org desktop menus for LXDE";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|