summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/debmirror/default.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2021-12-04 21:24:48 +0100
committermakefu <github@syntax-fehler.de>2021-12-04 21:24:48 +0100
commit7ca789f598c856ceda3ac55d028ab5a8a8a1e6a2 (patch)
tree9793b82947801f39f55b393cd02951c25de26099 /makefu/5pkgs/debmirror/default.nix
parent4f500d5006b9a1594589b60278515220ed4b75da (diff)
ma pkgs: stdenv.lib -> lib
Diffstat (limited to 'makefu/5pkgs/debmirror/default.nix')
-rw-r--r--makefu/5pkgs/debmirror/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/makefu/5pkgs/debmirror/default.nix b/makefu/5pkgs/debmirror/default.nix
index d1f007de..69c29481 100644
--- a/makefu/5pkgs/debmirror/default.nix
+++ b/makefu/5pkgs/debmirror/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, pkgs, fetchgit }:
+{ stdenv, lib, pkgs, fetchgit }:
pkgs.perlPackages.buildPerlPackage rec {
pname = "debmirror";
@@ -34,8 +34,8 @@ pkgs.perlPackages.buildPerlPackage rec {
meta = {
description = "mirror apt repos";
homepage = https://tracker.debian.org/pkg/debmirror;
- license = stdenv.lib.licenses.gpl2;
- platforms = stdenv.lib.platforms.linux;
- maintainers = with stdenv.lib.maintainers; [ makefu ];
+ license = lib.licenses.gpl2;
+ platforms = lib.platforms.linux;
+ maintainers = with lib.maintainers; [ makefu ];
};
}