nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchurl, pkgconfig, libestr }:
2stdenv.mkDerivation {
3 name = "libee-0.4.1";
4
5 src = fetchurl {
6 url = http://www.libee.org/download/files/download/libee-0.4.1.tar.gz;
7 sha256 = "09xhgzmsq0g3jsyj24vy67bhzk2fv971w5ixdkhfwgar70cw1nn0";
8 };
9
10 buildInputs = [pkgconfig libestr];
11
12 meta = {
13 homepage = http://www.libee.org/;
14 description = "An Event Expression Library inspired by CEE";
15 platforms = stdenv.lib.platforms.unix;
16 };
17}