blob: baa671ce217cecccbd36c70af5f414a07bf43d0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# This is a revival of the old trrntzip at
# https://sourceforge.net/projects/trrntzip
#
# See https://sourceforge.net/p/trrntzip/discussion/457469/thread/d3610ea3b6/
# there hasn't been any response
#
# Besides the new one is on github instead of sourceforge
# which makes life for us easier
{ lib
, stdenv
, fetchFromGitHub
, cmake
, zlib
}:
stdenv.mkDerivation (finalAttrs: {
pname = "trrntzip";
version = "1.3";
src = fetchFromGitHub {
owner = "0-wiz-0";
repo = "trrntzip";
rev = "v${finalAttrs.version}";
hash = "sha256-whxPqXT6w91jWv9aoTE4ITbjqohgwytzA0HN7WXKcTA=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib ];
meta = with lib; {
description = "The goal of the program is to use standard values when creating zips to create identical files over multiple systems";
longDescription = ''
Torrentzip converts zip archives to a standard format with some
pre-defined values, sorting the files, and using particular compression
settings so that running it on zip archives created by other tools will
always result in the same output. This helps e.g. with sharing
zip archives using BitTorrent (which is where the name comes from).
This is a revival of https://sourceforge.net/projects/trrntzip.
'';
homepage = "https://github.com/0-wiz-0/trrntzip";
license = with licenses; [
# "This software includes code from minizip, which is part of zlib"
licenses.zlib
gpl2Plus
];
platforms = platforms.linux;
maintainers = with maintainers; [ TheBrainScrambler ];
};
})
|