vscode-extensions.yoavbls.pretty-ts-errors: 0.5.4 -> 0.6.1 (#363464)
[NixPkgs.git] / pkgs / by-name / bo / boolstuff / package.nix
blob1f8495be5519ffd547b8870845a5b50511120eac
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6 }:
7 stdenv.mkDerivation rec {
8   pname = "boolstuff";
9   version = "0.1.17";
11   src = fetchurl {
12     url = "http://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz";
13     hash = "sha256-WPFUoTUofigPxTRo6vUbVTEVWMeEPDWszCA05toOX0I=";
14   };
16   nativeBuildInputs = [ pkg-config ];
18   meta = {
19     description = "Library for operations on boolean expression binary trees";
20     homepage = "http://perso.b2b2c.ca/~sarrazip/dev/boolstuff.html";
21     license = "GPL";
22     maintainers = [ lib.maintainers.marcweber ];
23     mainProgram = "booldnf";
24     platforms = lib.platforms.all;
25   };