27 lines
642 B
Nix
27 lines
642 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
stdenv,
|
||
|
|
fetchurl,
|
||
|
|
pkg-config,
|
||
|
|
}:
|
||
|
|
stdenv.mkDerivation rec {
|
||
|
|
pname = "boolstuff";
|
||
|
|
version = "0.1.17";
|
||
|
|
|
||
|
|
src = fetchurl {
|
||
|
|
url = "http://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz";
|
||
|
|
hash = "sha256-WPFUoTUofigPxTRo6vUbVTEVWMeEPDWszCA05toOX0I=";
|
||
|
|
};
|
||
|
|
|
||
|
|
nativeBuildInputs = [ pkg-config ];
|
||
|
|
|
||
|
|
meta = {
|
||
|
|
description = "Library for operations on boolean expression binary trees";
|
||
|
|
homepage = "http://perso.b2b2c.ca/~sarrazip/dev/boolstuff.html";
|
||
|
|
license = lib.licenses.gpl2Only;
|
||
|
|
maintainers = [ lib.maintainers.marcweber ];
|
||
|
|
mainProgram = "booldnf";
|
||
|
|
platforms = lib.platforms.all;
|
||
|
|
};
|
||
|
|
}
|