summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/debmirror/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/5pkgs/debmirror/default.nix')
-rw-r--r--makefu/5pkgs/debmirror/default.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/makefu/5pkgs/debmirror/default.nix b/makefu/5pkgs/debmirror/default.nix
deleted file mode 100644
index 69c29481..00000000
--- a/makefu/5pkgs/debmirror/default.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ stdenv, lib, pkgs, fetchgit }:
-
-pkgs.perlPackages.buildPerlPackage rec {
- pname = "debmirror";
- version = "2.25";
-
- enableParallelBuilding = true;
-
- src = fetchgit {
- url = "https://anonscm.debian.org/git/collab-maint/debmirror.git";
- rev = "c77e5caa15a4ab6497db5d819614387e647ccf4e";
- sha256 = "1zp8ff9ajw22b4wradnw1hnfcpbyx5ibqzqgk6kp79nsj1dzmm0d";
- };
- preConfigure = ''
- touch Makefile.PL
- '';
-
- outputs = [ "out" ];
-
- buildPhase = ''
- make
- '';
-
- doCheck = false;
-
- installPhase = ''
- mkdir -p $out/bin $out/share/man/man1/
- cp debmirror mirror-size $out/bin
- cp debmirror.1 $out/share/man/man1/
- '';
- propagatedBuildInputs = (with pkgs.perlPackages; [ LockFileSimple LWP]) ++
- (with pkgs; [ rsync patch ed gzip diffutils findutils gnupg1 xz ]);
-
- meta = {
- description = "mirror apt repos";
- homepage = https://tracker.debian.org/pkg/debmirror;
- license = lib.licenses.gpl2;
- platforms = lib.platforms.linux;
- maintainers = with lib.maintainers; [ makefu ];
- };
-}