depot/third_party/nixpkgs/pkgs/development/libraries/boolstuff/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

22 lines
574 B
Nix

{ lib, stdenv, fetchurl, pkg-config }:
let baseurl = "https://perso.b2b2c.ca/~sarrazip/dev"; in
stdenv.mkDerivation rec {
name = "boolstuff-0.1.16";
src = fetchurl {
url = "${baseurl}/${name}.tar.gz";
sha256 = "10qynbyw723gz2vrvn4xk2var172kvhlz3l3l80qbdsfb3d12wn0";
};
nativeBuildInputs = [ pkg-config ];
meta = {
description = "Library for operations on boolean expression binary trees";
homepage = "${baseurl}/boolstuff.html";
license = "GPL";
maintainers = [ lib.maintainers.marcweber ];
platforms = lib.platforms.linux;
};
}