nixpkgs/pkgs/development/libraries/boolstuff/default.nix
Ryan Mulligan 2606c606a8 boolstuff: 0.1.15 -> 0.1.16
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
2018-02-25 09:39:11 -08:00

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;
};
}