Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / boolstuff / default.nix
blobc54cffb5285169f1b359960eaf00c605655a0880
1 { lib, stdenv, fetchurl, pkg-config }:
2 stdenv.mkDerivation rec {
3   pname = "boolstuff";
4   version = "0.1.17";
6   src = fetchurl {
7     url = "http://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz";
8     hash = "sha256-WPFUoTUofigPxTRo6vUbVTEVWMeEPDWszCA05toOX0I=";
9   };
11   nativeBuildInputs = [ pkg-config ];
13   meta = {
14     description = "Library for operations on boolean expression binary trees";
15     homepage = "http://perso.b2b2c.ca/~sarrazip/dev/boolstuff.html";
16     license = "GPL";
17     maintainers = [ lib.maintainers.marcweber ];
18     mainProgram = "booldnf";
19     platforms = lib.platforms.all;
20   };