Merge pull request #14537 from Balletie/lxmenu-data
lxmenu-data: init at 0.1.5
This commit is contained in:
commit
295df8c507
2 changed files with 22 additions and 0 deletions
20
pkgs/desktops/lxde/core/lxmenu-data.nix
Normal file
20
pkgs/desktops/lxde/core/lxmenu-data.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchurl, intltool }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "lxmenu-data-${version}";
|
||||
version = "0.1.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://downloads.sourceforge.net/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;
|
||||
};
|
||||
}
|
|
@ -5308,6 +5308,8 @@ in
|
|||
|
||||
lxappearance = callPackage ../applications/misc/lxappearance {};
|
||||
|
||||
lxmenu-data = callPackage ../desktops/lxde/core/lxmenu-data.nix { };
|
||||
|
||||
kona = callPackage ../development/interpreters/kona {};
|
||||
|
||||
lolcode = callPackage ../development/interpreters/lolcode { };
|
||||
|
|
Loading…
Reference in a new issue