mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
58 lines
1.2 KiB
Nix
58 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
testers,
|
|
mpack,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mpack";
|
|
version = "1.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://ftp.andrew.cmu.edu/pub/mpack/mpack-${version}.tar.gz";
|
|
hash = "sha256-J0EIuzo5mCpO/BT7OmUpjmbI5xNnw9q/STOBYtIHqUw=";
|
|
};
|
|
|
|
patches = [
|
|
./build-fix.patch
|
|
./sendmail-via-execvp.diff
|
|
./CVE-2011-4919.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
for f in *.{c,man,pl,unix} ; do
|
|
substituteInPlace $f --replace /usr/tmp /tmp
|
|
done
|
|
|
|
# this just shuts up some warnings
|
|
for f in {decode,encode,part,unixos,unixpk,unixunpk,xmalloc}.c ; do
|
|
sed -i 'i#include <stdlib.h>' $f
|
|
done
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm644 -t $out/share/doc/mpack INSTALL README.*
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion {
|
|
command = ''
|
|
mpack 2>&1 || echo "mpack exited with error code $?"
|
|
'';
|
|
package = mpack;
|
|
version = "mpack version ${version}";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Utilities for encoding and decoding binary files in MIME";
|
|
license = licenses.free;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ tomodachi94 ];
|
|
};
|
|
}
|