Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "libcello"; 9 version = "2.1.0"; 10 11 src = fetchurl { 12 url = "https://libcello.org/static/libCello-${version}.tar.gz"; 13 sha256 = "0a1b2x5ni07vd9ridnl7zv7h2s32070wsphjy94qr066b99gdb29"; 14 }; 15 16 makeFlags = [ "PREFIX=$(out)" ]; 17 18 meta = { 19 homepage = "https://libcello.org/"; 20 description = "Higher level programming in C"; 21 license = lib.licenses.bsd3; 22 maintainers = [ lib.maintainers.MostAwesomeDude ]; 23 platforms = lib.platforms.unix; 24 }; 25}