Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 24 lines 674 B view raw
1{ lib, stdenv, fetchurl, pkg-config, mod_ca, apr, aprutil }: 2 3stdenv.mkDerivation rec { 4 pname = "mod_timestamp"; 5 version = "0.2.2"; 6 7 src = fetchurl { 8 url = "https://redwax.eu/dist/rs/${pname}-${version}.tar.gz"; 9 sha256 = "1p18mgxx2ainfrc2wm27rl3lh6yl0ihx6snib60jnp694587bfwg"; 10 }; 11 12 nativeBuildInputs = [ pkg-config ]; 13 buildInputs = [ mod_ca apr aprutil ]; 14 inherit (mod_ca) configureFlags installFlags; 15 16 meta = with lib; { 17 description = "RedWax CA service module for issuing signed timestamps"; 18 19 homepage = "https://redwax.eu"; 20 license = licenses.asl20; 21 platforms = platforms.unix; 22 maintainers = with maintainers; [ dirkx ]; 23 }; 24}