nixpkgs/pkgs/desktops/lxde/core/lxmenu-data.nix
Ryan Mulligan b189247ba0 treewide: use more HTTPS URLs
Uses the HTTPS url for cases where the existing URL has a permanent
redirect. For each domain, at least one fixed derivation URL was
downloaded to test the domain is properly serving downloads.

Also fixes jbake source URL, which was broken.
2018-03-24 22:04:25 -07:00

21 lines
503 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 = https://lxde.org/;
license = stdenv.lib.licenses.gpl2;
description = "Freedesktop.org desktop menus for LXDE";
platforms = stdenv.lib.platforms.linux;
};
}