mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 12:14:40 +00:00
Enlightenment 0.16.8.15.
Patch by John Altobelli <acocaracha@gmail.com>, minor edits by Ludovic Courtès <ludo@gnu.org>. svn path=/nixpkgs/trunk/; revision=13823
This commit is contained in:
parent
7137c6dea8
commit
71cbd0995a
29
pkgs/desktops/enlightenment/default.nix
Normal file
29
pkgs/desktops/enlightenment/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, x11, xlibs, dbus, imlib2, freetype }:
|
||||||
|
|
||||||
|
let version = "0.16.8.15"; in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "enlightenment-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/enlightenment/e16-${version}.tar.gz";
|
||||||
|
sha256 = "0f8hg79mrk6b3fsvynvsrnqh1zgmvnnza0lf7qn4pq2mqyigbhgk";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [pkgconfig imlib2 freetype
|
||||||
|
xlibs.libX11 xlibs.libXt xlibs.libXext xlibs.libXrender xlibs.libXft ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Desktop shell built on the Enlightenment Foundation Libraries";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
Enlightenment is a window manager. Enlightenment is a desktop
|
||||||
|
shell. Enlightenment is the building blocks to create
|
||||||
|
beautiful applications. Enlightenment, or simply e, is a
|
||||||
|
group of people trying to make a new generation of software.
|
||||||
|
'';
|
||||||
|
|
||||||
|
homepage = http://enlightenment.org/;
|
||||||
|
|
||||||
|
license = "BSD-style";
|
||||||
|
};
|
||||||
|
}
|
@ -8481,6 +8481,10 @@ let
|
|||||||
### DESKTOP ENVIRONMENTS
|
### DESKTOP ENVIRONMENTS
|
||||||
|
|
||||||
|
|
||||||
|
enlightenment = import ../desktops/enlightenment {
|
||||||
|
inherit stdenv fetchurl pkgconfig x11 xlibs dbus imlib2 freetype;
|
||||||
|
};
|
||||||
|
|
||||||
gnome = recurseIntoAttrs (import ../desktops/gnome {
|
gnome = recurseIntoAttrs (import ../desktops/gnome {
|
||||||
inherit
|
inherit
|
||||||
fetchurl stdenv pkgconfig
|
fetchurl stdenv pkgconfig
|
||||||
|
Loading…
Reference in New Issue
Block a user