blob: db971b86e20529e72ec3d2bf9a103c812d97468a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
lib,
stdenv,
fetchurl,
pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "boolstuff";
version = "0.1.17";
src = fetchurl {
url = "http://perso.b2b2c.ca/~sarrazip/dev/boolstuff-${finalAttrs.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 = [ ];
mainProgram = "booldnf";
platforms = lib.platforms.all;
};
})
|