1 # This is a revival of the old trrntzip at
2 # https://sourceforge.net/projects/trrntzip
4 # See https://sourceforge.net/p/trrntzip/discussion/457469/thread/d3610ea3b6/
5 # there hasn't been any response
7 # Besides the new one is on github instead of sourceforge
8 # which makes life for us easier
17 stdenv.mkDerivation (finalAttrs: {
21 src = fetchFromGitHub {
24 rev = "v${finalAttrs.version}";
25 hash = "sha256-whxPqXT6w91jWv9aoTE4ITbjqohgwytzA0HN7WXKcTA=";
28 nativeBuildInputs = [ cmake ];
30 buildInputs = [ zlib ];
33 description = "The goal of the program is to use standard values when creating zips to create identical files over multiple systems";
35 Torrentzip converts zip archives to a standard format with some
36 pre-defined values, sorting the files, and using particular compression
37 settings so that running it on zip archives created by other tools will
38 always result in the same output. This helps e.g. with sharing
39 zip archives using BitTorrent (which is where the name comes from).
41 This is a revival of https://sourceforge.net/projects/trrntzip.
43 homepage = "https://github.com/0-wiz-0/trrntzip";
44 license = with licenses; [
45 # "This software includes code from minizip, which is part of zlib"
50 platforms = platforms.linux;
51 maintainers = with maintainers; [ ];