2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config }:
|
2011-10-03 16:55:33 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-06-22 13:21:29 +00:00
|
|
|
pname = "boolstuff";
|
2022-05-13 18:30:00 +00:00
|
|
|
version = "0.1.17";
|
2009-09-10 16:57:50 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-05-13 18:30:00 +00:00
|
|
|
url = "http://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz";
|
|
|
|
hash = "sha256-WPFUoTUofigPxTRo6vUbVTEVWMeEPDWszCA05toOX0I=";
|
2009-09-10 16:57:50 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2009-09-10 16:57:50 +00:00
|
|
|
|
2016-01-01 21:47:08 +00:00
|
|
|
meta = {
|
2010-07-28 11:55:54 +00:00
|
|
|
description = "Library for operations on boolean expression binary trees";
|
2021-08-22 14:04:26 +00:00
|
|
|
homepage = "http://perso.b2b2c.ca/~sarrazip/dev/boolstuff.html";
|
2009-09-10 16:57:50 +00:00
|
|
|
license = "GPL";
|
2021-01-21 17:00:13 +00:00
|
|
|
maintainers = [ lib.maintainers.marcweber ];
|
2022-05-05 00:52:27 +00:00
|
|
|
mainProgram = "booldnf";
|
2021-03-04 08:12:21 +00:00
|
|
|
platforms = lib.platforms.all;
|
2009-09-10 16:57:50 +00:00
|
|
|
};
|
|
|
|
}
|