mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
22 lines
617 B
Nix
22 lines
617 B
Nix
{ lib, stdenv, fetchurl, pkg-config }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "boolstuff";
|
|
version = "0.1.17";
|
|
|
|
src = fetchurl {
|
|
url = "http://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz";
|
|
hash = "sha256-WPFUoTUofigPxTRo6vUbVTEVWMeEPDWszCA05toOX0I=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
meta = {
|
|
description = "Library for operations on boolean expression binary trees";
|
|
homepage = "http://perso.b2b2c.ca/~sarrazip/dev/boolstuff.html";
|
|
license = "GPL";
|
|
maintainers = [ lib.maintainers.marcweber ];
|
|
mainProgram = "booldnf";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|