mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
22 lines
700 B
Nix
22 lines
700 B
Nix
{ stdenv, fetchurl, pkgconfig, varnish, docutils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.2.0";
|
|
name = "${varnish.name}-rtstatus-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.varnish-software.com/libvmod-rtstatus/libvmod-rtstatus-${version}.tar.gz";
|
|
sha256 = "0hll1aspgpv1daw5sdbn5w1d6birchxgapzb6zi1nhahjlimy4ly";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig docutils varnish.python ];
|
|
buildInputs = [ varnish ];
|
|
configureFlags = [ "VMOD_DIR=$(out)/lib/varnish/vmods" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Varnish realtime status page";
|
|
homepage = https://github.com/varnish/libvmod-rtstatus;
|
|
inherit (varnish.meta) license platforms maintainers;
|
|
};
|
|
}
|