Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 19 lines 525 B view raw
1{ stdenv, lib, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "libsrs2"; 5 version = "1.0.18"; 6 7 src = fetchurl { 8 url = "https://www.libsrs2.org/srs/libsrs2-${version}.tar.gz"; 9 sha256 = "9d1191b705d7587a5886736899001d04168392bbb6ed6345a057ade50943a492"; 10 }; 11 12 meta = { 13 description = "Next generation SRS library from the original designer of SRS"; 14 mainProgram = "srs"; 15 license = with lib.licenses; [ gpl2 bsd3 ]; 16 homepage = "https://www.libsrs2.org/"; 17 platforms = lib.platforms.linux; 18 }; 19}