nixpkgs/pkgs/tools/archivers/p7zip/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
2.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, enableUnfree ? false }:
stdenv.mkDerivation (finalAttrs: {
pname = "p7zip";
version = "17.05";
src = fetchFromGitHub {
owner = "p7zip-project";
repo = "p7zip";
rev = "v${finalAttrs.version}";
sha256 = {
free = "sha256-5r7M9BVcAryZNTkqJ/BfHnSSWov1PwoZhUnLBwEbJoA=";
unfree = "sha256-z3qXgv/TkNRbb85Ew1OcJNxoyssfzHShc0b0/4NZOb0=";
}.${if enableUnfree then "unfree" else "free"};
# remove the unRAR related code from the src drv
# > the license requires that you agree to these use restrictions,
# > or you must remove the software (source and binary) from your hard disks
# https://fedoraproject.org/wiki/Licensing:Unrar
2022-05-17 21:10:33 +02:00
postFetch = lib.optionalString (!enableUnfree) ''
rm -r $out/CPP/7zip/Compress/Rar*
find $out -name makefile'*' -exec sed -i '/Rar/d' {} +
'';
2020-11-25 17:43:49 +01:00
};
2020-12-21 19:01:38 +01:00
# Default makefile is full of impurities on Darwin. The patch doesn't hurt Linux so I'm leaving it unconditional
postPatch = ''
sed -i '/CC=\/usr/d' makefile.macosx_llvm_64bits
# Avoid writing timestamps into compressed manpages
# to maintain determinism.
substituteInPlace install.sh --replace 'gzip' 'gzip -n'
chmod +x install.sh
# I think this is a typo and should be CXX? Either way let's kill it
sed -i '/XX=\/usr/d' makefile.macosx_llvm_64bits
2021-01-15 10:19:50 +01:00
'' + lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
2018-10-12 14:36:48 +02:00
substituteInPlace makefile.machine \
--replace 'CC=gcc' 'CC=${stdenv.cc.targetPrefix}gcc' \
--replace 'CXX=g++' 'CXX=${stdenv.cc.targetPrefix}g++'
'';
2013-08-15 05:53:43 +02:00
preConfigure = ''
2020-11-25 17:43:49 +01:00
buildFlags=all3
2021-01-15 10:19:50 +01:00
'' + lib.optionalString stdenv.isDarwin ''
2020-11-25 17:43:49 +01:00
cp makefile.macosx_llvm_64bits makefile.machine
'';
2012-10-05 22:06:35 +02:00
enableParallelBuilding = true;
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=c++11-narrowing";
2012-10-05 22:06:35 +02:00
makeFlags = [
"DEST_BIN=${placeholder "out"}/bin"
"DEST_SHARE=${placeholder "lib"}/lib/p7zip"
"DEST_MAN=${placeholder "man"}/share/man"
"DEST_SHARE_DOC=${placeholder "doc"}/share/doc/p7zip"
];
2016-12-17 13:04:59 +01:00
outputs = [ "out" "lib" "doc" "man" ];
setupHook = ./setup-hook.sh;
passthru.updateScript = ./update.sh;
meta = with lib; {
homepage = "https://github.com/p7zip-project/p7zip";
description = "A new p7zip fork with additional codecs and improvements (forked from https://sourceforge.net/projects/p7zip/)";
license = with licenses;
# p7zip code is largely lgpl2Plus
# CPP/7zip/Compress/LzfseDecoder.cpp is bsd3
[ lgpl2Plus /* and */ bsd3 ] ++
# and CPP/7zip/Compress/Rar* are unfree with the unRAR license restriction
# the unRAR compression code is disabled by default
lib.optionals enableUnfree [ unfree ];
maintainers = with maintainers; [ raskin jk ];
platforms = platforms.unix;
2021-04-27 19:28:44 +02:00
mainProgram = "7z";
};
})