Add GNU lsh, a GPL'd implementation of SSH, and `liboop', and event loop library.

svn path=/nixpkgs/trunk/; revision=10637
This commit is contained in:
Ludovic Courtès
2008-02-12 10:51:44 +00:00
parent df17eb0dc3
commit c81efcdedb
3 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "liboop";
src = fetchurl {
url = http://download.ofb.net/liboop/liboop.tar.gz;
sha256 = "34d83c6e0f09ee15cb2bc3131e219747c3b612bb57cf7d25318ab90da9a2d97c";
};
buildInputs = [];
meta = {
description = "`liboop', an event loop library.";
homepage = http://liboop.ofb.net/;
license = "LGPL";
};
}