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

21 lines
593 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config }:
stdenv.mkDerivation rec {
2021-06-22 13:21:29 +00:00
pname = "boolstuff";
version = "0.1.16";
src = fetchurl {
2021-06-22 13:21:29 +00:00
url = "https://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz";
sha256 = "10qynbyw723gz2vrvn4xk2var172kvhlz3l3l80qbdsfb3d12wn0";
};
nativeBuildInputs = [ pkg-config ];
meta = {
description = "Library for operations on boolean expression binary trees";
2021-06-22 13:21:29 +00:00
homepage = "https://perso.b2b2c.ca/~sarrazip/dev/boolstuff.html";
license = "GPL";
maintainers = [ lib.maintainers.marcweber ];
2021-03-04 08:12:21 +00:00
platforms = lib.platforms.all;
};
}