package.nix (666B)
1 { 2 lib, 3 stdenv, 4 fetchFromSourcehut, 5 m4, 6 }: 7 8 stdenv.mkDerivation (finalAttrs: { 9 pname = "kefir"; 10 version = "0.5.1"; 11 12 __structuredAttrs = true; 13 14 src = fetchFromSourcehut { 15 owner = "~jprotopopov"; 16 repo = "kefir"; 17 tag = "v${finalAttrs.version}"; 18 hash = "sha256-UQbMPUGxyKRP0LwrLl+Y3jrNm0go4c6misbZV+VzBZI="; 19 }; 20 21 nativeBuildInputs = [ m4 ]; 22 23 installFlags = [ "prefix=$(out)" ]; 24 25 meta = { 26 description = "C17/C23 compiler"; 27 homepage = "https://kefir.protopopov.lv/"; 28 license = lib.licenses.gpl3Only; 29 maintainers = [ lib.maintainers.sikmir ]; 30 platforms = lib.platforms.linux; 31 skip.ci = stdenv.isDarwin; 32 }; 33 })
