mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
2606c606a8
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/ji68d52l18c35b8j96naan8ippmm4zqw-boolstuff-0.1.16/bin/booldnf --help` got 0 exit code - ran `/nix/store/ji68d52l18c35b8j96naan8ippmm4zqw-boolstuff-0.1.16/bin/booldnf --help` and found version 0.1.16 - found 0.1.16 with grep in /nix/store/ji68d52l18c35b8j96naan8ippmm4zqw-boolstuff-0.1.16 - found 0.1.16 in filename of file in /nix/store/ji68d52l18c35b8j96naan8ippmm4zqw-boolstuff-0.1.16
23 lines
581 B
Nix
23 lines
581 B
Nix
{ stdenv, fetchurl, pkgconfig }:
|
|
|
|
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 = [ pkgconfig ];
|
|
|
|
meta = {
|
|
description = "Library for operations on boolean expression binary trees";
|
|
homepage = "${baseurl}/boolstuff.html";
|
|
license = "GPL";
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|