Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1014 B
Nix
49 lines
1014 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
unzip,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "objconv";
|
|
version = "2.54.1";
|
|
|
|
src = fetchurl {
|
|
# Versioned archive of objconv sources maintained by orivej.
|
|
url = "https://archive.org/download/objconv/${pname}-${version}.zip";
|
|
sha256 = "sha256-DFyo+8fvHEr+PMfMkBhxGliFr6y+i868SAKNHskMzHw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
];
|
|
|
|
unpackPhase = ''
|
|
mkdir -p "$name"
|
|
cd "$name"
|
|
unpackFile "$src"
|
|
unpackFile source.zip
|
|
'';
|
|
|
|
buildPhase = "c++ -o objconv -O2 *.cpp";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/doc/objconv
|
|
mv objconv $out/bin
|
|
mv objconv-instructions.pdf $out/doc/objconv
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Object and executable file converter, modifier and disassembler";
|
|
mainProgram = "objconv";
|
|
homepage = "https://www.agner.org/optimize/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|