083d0890f5
* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
17 lines
350 B
Nix
17 lines
350 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "liboop-1.0";
|
|
|
|
src = fetchurl {
|
|
url = http://download.ofb.net/liboop/liboop.tar.gz;
|
|
sha256 = "34d83c6e0f09ee15cb2bc3131e219747c3b612bb57cf7d25318ab90da9a2d97c";
|
|
};
|
|
|
|
meta = {
|
|
description = "Event loop library";
|
|
homepage = http://liboop.ofb.net/;
|
|
license = "LGPL";
|
|
};
|
|
}
|