mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Added ConsoleKit package
svn path=/nixpkgs/trunk/; revision=14511
This commit is contained in:
parent
cddf378de3
commit
18874b164f
1 changed files with 10 additions and 0 deletions
10
pkgs/development/libraries/ConsoleKit/default.nix
Normal file
10
pkgs/development/libraries/ConsoleKit/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{stdenv, fetchurl, pkgconfig, dbus_glib, zlib, glib, libX11}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ConsoleKit-0.3.0";
|
||||
src = fetchurl {
|
||||
url = http://people.freedesktop.org/~mccann/dist/ConsoleKit-0.3.0.tar.bz2;
|
||||
md5 = "43b02a52212330b54cfb34c4044d9ce0";
|
||||
};
|
||||
buildInputs = [ pkgconfig dbus_glib zlib glib libX11 ];
|
||||
}
|
Loading…
Reference in a new issue