summary refs log tree commit diff
path: root/pkgs/development/libraries/boolstuff/default.nix
blob: 9b1840256ade3e6d4840a4cac4fd79a19aab562a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, fetchurl, pkg-config }:
stdenv.mkDerivation rec {
  pname = "boolstuff";
  version = "0.1.16";

  src = fetchurl {
    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";
    homepage = "https://perso.b2b2c.ca/~sarrazip/dev/boolstuff.html";
    license = "GPL";
    maintainers = [ lib.maintainers.marcweber ];
    platforms = lib.platforms.all;
  };
}