e16: init at 1.0.23
This commit is contained in:
parent
f112893e04
commit
86c72072fd
|
@ -0,0 +1,62 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, pkg-config
|
||||||
|
, freetype
|
||||||
|
, imlib2
|
||||||
|
, libSM
|
||||||
|
, libXcomposite
|
||||||
|
, libXdamage
|
||||||
|
, libXext
|
||||||
|
, libXfixes
|
||||||
|
, libXft
|
||||||
|
, libXinerama
|
||||||
|
, libXrandr
|
||||||
|
, libpulseaudio
|
||||||
|
, libsndfile
|
||||||
|
, pango
|
||||||
|
, perl
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "e16";
|
||||||
|
version = "1.0.23";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/enlightenment/e16-${version}.tar.xz";
|
||||||
|
sha256 = "028rn1plggacsvdd035qnnph4xw8nya34mmjvvl7d4gqj9pj293f";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
freetype
|
||||||
|
imlib2
|
||||||
|
libSM
|
||||||
|
libXcomposite
|
||||||
|
libXdamage
|
||||||
|
libXext
|
||||||
|
libXfixes
|
||||||
|
libXft
|
||||||
|
libXinerama
|
||||||
|
libXrandr
|
||||||
|
libpulseaudio
|
||||||
|
libsndfile
|
||||||
|
pango
|
||||||
|
perl
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace scripts/e_gen_menu --replace "/usr/local:" "/run/current-system/sw:/usr/local:"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://www.enlightenment.org/e16";
|
||||||
|
description = "Enlightenment DR16 window manager";
|
||||||
|
license = licenses.bsd2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.romildo ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -22475,6 +22475,8 @@ in
|
||||||
|
|
||||||
dzen2 = callPackage ../applications/window-managers/dzen2 { };
|
dzen2 = callPackage ../applications/window-managers/dzen2 { };
|
||||||
|
|
||||||
|
e16 = callPackage ../applications/window-managers/e16 { };
|
||||||
|
|
||||||
eaglemode = callPackage ../applications/misc/eaglemode { };
|
eaglemode = callPackage ../applications/misc/eaglemode { };
|
||||||
|
|
||||||
ebumeter = callPackage ../applications/audio/ebumeter { };
|
ebumeter = callPackage ../applications/audio/ebumeter { };
|
||||||
|
|
Loading…
Reference in New Issue