From ebae7a31fe91df8869bf50e068648a337d4827c2 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Fri, 3 May 2024 11:41:42 -0400 Subject: [PATCH] Remove `PrometheusTiny` from overlay It's in Nixpkgs for a good while now. (cherry picked from commit 92155f9a07f5fe32e0778e474e7313997811e635) --- flake.nix | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/flake.nix b/flake.nix index c9ccb3d4..273afd19 100644 --- a/flake.nix +++ b/flake.nix @@ -40,27 +40,6 @@ # A Nixpkgs overlay that provides a 'hydra' package. overlays.default = final: prev: { - - # Add LDAP dependencies that aren't currently found within nixpkgs. - perlPackages = prev.perlPackages // { - - PrometheusTiny = final.perlPackages.buildPerlPackage { - pname = "Prometheus-Tiny"; - version = "0.007"; - src = final.fetchurl { - url = "mirror://cpan/authors/id/R/RO/ROBN/Prometheus-Tiny-0.007.tar.gz"; - sha256 = "0ef8b226a2025cdde4df80129dd319aa29e884e653c17dc96f4823d985c028ec"; - }; - buildInputs = with final.perlPackages; [ HTTPMessage Plack TestException ]; - meta = { - homepage = "https://github.com/robn/Prometheus-Tiny"; - description = "A tiny Prometheus client"; - license = with final.lib.licenses; [ artistic1 gpl1Plus ]; - }; - }; - - }; - hydra = final.callPackage ./package.nix { inherit (final.lib) fileset; rawSrc = self;