summary refs log tree commit diff
path: root/pkgs/desktops/e17/eeze/default.nix
blob: 162fbcf1aef1a17065e2b623bc342a2278437ecb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, pkgconfig, eina, ecore, udev }:
stdenv.mkDerivation rec {
  name = "eeze-${version}";
  version = "1.7.5";
  src = fetchurl {
    url = "http://download.enlightenment.org/releases/${name}.tar.bz2";
    sha256 = "0274fs4cxgw6420yyz9frrc8zhj0qqyvwczzslq3kih3sx1nikxr";
  };
  buildInputs = [ pkgconfig eina ecore ];
  propagatedBuildInputs = [ udev ];
  meta = {
    description = "Enlightenment's device abstraction library";
    longDescription = ''
      Enlightenment's Eeze is a library for manipulating devices
      through udev with a simple and fast api. It interfaces directly
      with libudev, avoiding such middleman daemons as udisks/upower
      or hal, to immediately gather device information the instant it
      becomes known to the system.
    '';
    homepage = http://enlightenment.org/;
    license = stdenv.lib.licenses.bsd2;  # not sure
  };
}