blob: 81f6205986df279a58dc44e5ad91f7cb9c53c2f4 (
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
54
55
56
57
58
|
{ lib
, stdenv
, fetchFromGitHub
, libiconv
}:
stdenv.mkDerivation rec {
pname = "leanify";
version = "unstable-2023-12-17";
src = fetchFromGitHub {
owner = "JayXon";
repo = "Leanify";
rev = "9daa4303cdc03f6b90b72c369e6377c6beb75c39";
hash = "sha256-fLazKCQnOT3bN3Kz25Q80RLk54EU5U6HCf6kPLcXn9c=";
};
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
substituteInPlace Makefile \
--replace-fail "-flto" "" \
--replace-fail "lib/LZMA/Alloc.o" "lib/LZMA/CpuArch.o lib/LZMA/Alloc.o" \
--replace-quiet "-Werror" ""
'';
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
doCheck = true;
checkPhase = ''
runHook preCheck
./leanify /dev/null
runHook postCheck
'';
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp leanify $out/bin/
runHook postInstall
'';
meta = with lib; {
description = "Lightweight lossless file minifier/optimizer";
longDescription = ''
Leanify is a lightweight lossless file minifier/optimizer.
It removes unnecessary data (debug information, comments, metadata, etc.) and recompress the file to reduce file size.
It will not reduce image quality at all.
'';
homepage = "https://github.com/JayXon/Leanify";
changelog = "https://github.com/JayXon/Leanify/blob/master/CHANGELOG.md";
license = licenses.mit;
maintainers = [ maintainers.mynacol ];
platforms = platforms.all;
mainProgram = "leanify";
};
}
|