diff options
author | makefu <github@syntax-fehler.de> | 2023-07-28 22:24:15 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2023-07-28 22:24:15 +0200 |
commit | 060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch) | |
tree | 2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/5pkgs/debmirror/default.nix | |
parent | cbfcc890e3b76d942b927809bf981a5fa7289e6a (diff) |
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/5pkgs/debmirror/default.nix')
-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 ]; - }; -} |