diff options
| author | lassulus <git@lassul.us> | 2023-07-28 23:59:58 +0200 |
|---|---|---|
| committer | lassulus <git@lassul.us> | 2023-07-28 23:59:58 +0200 |
| commit | 02e790c9fb6965e28f1573841181f610ff1599eb (patch) | |
| tree | 5462ffe78c3708806821d893baa6a2c81137812f /makefu/5pkgs/debmirror | |
| parent | fd07efa9e97b0984856a97a44ad0b97130db92f7 (diff) | |
| parent | 3f37acf6f9ea4af21195cd7b0a37ba359105a69d (diff) | |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/5pkgs/debmirror')
| -rw-r--r-- | makefu/5pkgs/debmirror/default.nix | 41 |
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 69c29481d..000000000 --- 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 ]; - }; -} |
