nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchurl,
5 pkg-config,
6}:
7stdenv.mkDerivation rec {
8 pname = "boolstuff";
9 version = "0.1.17";
10
11 src = fetchurl {
12 url = "http://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz";
13 hash = "sha256-WPFUoTUofigPxTRo6vUbVTEVWMeEPDWszCA05toOX0I=";
14 };
15
16 nativeBuildInputs = [ pkg-config ];
17
18 meta = {
19 description = "Library for operations on boolean expression binary trees";
20 homepage = "http://perso.b2b2c.ca/~sarrazip/dev/boolstuff.html";
21 license = lib.licenses.gpl2Only;
22 maintainers = [ lib.maintainers.marcweber ];
23 mainProgram = "booldnf";
24 platforms = lib.platforms.all;
25 };
26}