2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config }:
|
2020-04-24 23:36:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-07-21 07:28:18 +00:00
|
|
|
pname = "boolstuff";
|
2022-05-18 14:49:53 +00:00
|
|
|
version = "0.1.17";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-05-18 14:49:53 +00:00
|
|
|
url = "http://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz";
|
|
|
|
hash = "sha256-WPFUoTUofigPxTRo6vUbVTEVWMeEPDWszCA05toOX0I=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Library for operations on boolean expression binary trees";
|
2021-08-23 08:02:39 +00:00
|
|
|
homepage = "http://perso.b2b2c.ca/~sarrazip/dev/boolstuff.html";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = "GPL";
|
2021-02-05 17:12:51 +00:00
|
|
|
maintainers = [ lib.maintainers.marcweber ];
|
2022-05-18 14:49:53 +00:00
|
|
|
mainProgram = "booldnf";
|
2021-03-09 03:18:52 +00:00
|
|
|
platforms = lib.platforms.all;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|