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
88 lines
1.7 KiB
Nix
88 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
cargo,
|
|
capstone,
|
|
libbfd,
|
|
libelf,
|
|
libiberty,
|
|
readline,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "wcc";
|
|
version = "0.0.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "endrazine";
|
|
repo = "wcc";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-hyelDAsE3IFvUxBqttYW7QmM6NPEa6pOREmawFjW2Q8=";
|
|
deepClone = true;
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
cargoDeps = rustPlatform.importCargoLock { lockFile = ./Cargo.lock; };
|
|
|
|
nativeBuildInputs = [
|
|
cargo
|
|
rustPlatform.cargoSetupHook
|
|
];
|
|
|
|
buildInputs = [
|
|
capstone
|
|
libbfd
|
|
libelf
|
|
libiberty
|
|
readline
|
|
];
|
|
|
|
postPatch = ''
|
|
cp ${./Cargo.lock} Cargo.lock
|
|
sed -i src/wsh/include/libwitch/wsh.h src/wsh/scripts/INDEX \
|
|
-e "s#/usr/share/wcc#$out/share/wcc#"
|
|
|
|
sed -i -e '/stropts.h>/d' src/wsh/include/libwitch/wsh.h
|
|
|
|
sed -i '/wsh-static/d' src/wsh/Makefile
|
|
'';
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
|
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/usr/bin $out/lib/x86_64-linux-gnu
|
|
'';
|
|
|
|
postInstall = ''
|
|
mv $out/usr/* $out
|
|
rmdir $out/usr
|
|
mkdir -p $out/share/man/man1
|
|
cp doc/manpages/*.1 $out/share/man/man1/
|
|
'';
|
|
|
|
postFixup = ''
|
|
# not detected by patchShebangs
|
|
substituteInPlace $out/bin/wcch --replace-fail '#!/usr/bin/wsh' "#!$out/bin/wsh"
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/endrazine/wcc";
|
|
description = "Witchcraft compiler collection: tools to convert and script ELF files";
|
|
license = lib.licenses.mit;
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
];
|
|
maintainers = with lib.maintainers; [
|
|
orivej
|
|
DieracDelta
|
|
];
|
|
};
|
|
})
|