mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
18 lines
394 B
Nix
18 lines
394 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";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|