nixpkgs/pkgs/development/libraries/boolstuff/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
617 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config }:
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";
src = fetchurl {
2022-05-13 18:30:00 +00:00
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";
2021-08-22 14:04:26 +00:00
homepage = "http://perso.b2b2c.ca/~sarrazip/dev/boolstuff.html";
license = "GPL";
maintainers = [ lib.maintainers.marcweber ];
mainProgram = "booldnf";
2021-03-04 08:12:21 +00:00
platforms = lib.platforms.all;
};
}