Adding 'awesome' (and two packages it was depending on)
svn path=/nixpkgs/trunk/; revision=20385
This commit is contained in:
15
pkgs/development/libraries/libxdg-basedir/default.nix
Normal file
15
pkgs/development/libraries/libxdg-basedir/default.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libxdg-basedir-1.0.2";
|
||||
src = fetchurl {
|
||||
url = "http://n.ethz.ch/student/nevillm/download/libxdg-basedir/${name}.tar.gz";
|
||||
sha256 = "0fibbzba228gdk05lfi8cgfrsp80a2gnjbwka0pzpkig0fz8pp9i";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://n.ethz.ch/student/nevillm/download/libxdg-basedir/;
|
||||
description = "Implementation of the XDG Base Directory specification";
|
||||
license = "BSD";
|
||||
};
|
||||
}
|
||||
20
pkgs/development/libraries/startup-notification/default.nix
Normal file
20
pkgs/development/libraries/startup-notification/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{stdenv, fetchurl, libX11, libxcb, pkgconfig, xcbutil}:
|
||||
|
||||
let
|
||||
version = "0.10";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "libstartup-notification-${version}";
|
||||
src = fetchurl {
|
||||
url = "http://www.freedesktop.org/software/startup-notification/releases/startup-notification-${version}.tar.gz";
|
||||
sha256 = "0nalaay0yj3gq85insp9l31hsv5zp390m4nn37y235v151ffpfv4";
|
||||
};
|
||||
|
||||
buildInputs = [ libX11 libxcb pkgconfig xcbutil ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.freedesktop.org/software/startup-notification;
|
||||
description = "Application startup notification and feedback library";
|
||||
license = "BSD";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user