Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 22 lines 572 B view raw
1{ lib, stdenv, fetchurl, pkg-config }: 2 3let baseurl = "https://perso.b2b2c.ca/~sarrazip/dev"; in 4 5stdenv.mkDerivation rec { 6 name = "boolstuff-0.1.16"; 7 8 src = fetchurl { 9 url = "${baseurl}/${name}.tar.gz"; 10 sha256 = "10qynbyw723gz2vrvn4xk2var172kvhlz3l3l80qbdsfb3d12wn0"; 11 }; 12 13 nativeBuildInputs = [ pkg-config ]; 14 15 meta = { 16 description = "Library for operations on boolean expression binary trees"; 17 homepage = "${baseurl}/boolstuff.html"; 18 license = "GPL"; 19 maintainers = [ lib.maintainers.marcweber ]; 20 platforms = lib.platforms.all; 21 }; 22}