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
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{
|
|
fetchurl,
|
|
lib,
|
|
stdenv,
|
|
ncompress,
|
|
libX11,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "stalin";
|
|
version = "0.11";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.ecn.purdue.edu/qobi/stalin.tar.Z";
|
|
sha256 = "0lz8riccpigdixwf6dswwva6s4kxaz3dzxhkqhcxgwmffy30vw8s";
|
|
};
|
|
|
|
buildInputs = [
|
|
ncompress
|
|
libX11
|
|
];
|
|
|
|
buildPhase = "./build ";
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/bin"
|
|
cp stalin "$out/bin"
|
|
|
|
mkdir -p "$out/man/man1"
|
|
cp stalin.1 "$out/man/man1"
|
|
|
|
mkdir -p "$out/share/emacs/site-lisp"
|
|
cp stalin.el "$out/share/emacs/site-lisp"
|
|
|
|
mkdir -p "$out/doc/stalin-${version}"
|
|
cp README "$out/doc/stalin-${version}"
|
|
|
|
mkdir -p "$out/share/stalin-${version}/include"
|
|
cp "include/"* "$out/share/stalin-${version}/include"
|
|
|
|
substituteInPlace "$out/bin/stalin" \
|
|
--replace "$PWD/include/stalin" "$out/share/stalin-${version}/include/stalin"
|
|
substituteInPlace "$out/bin/stalin" \
|
|
--replace "$PWD/include" "$out/share/stalin-${version}/include"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://www.ece.purdue.edu/~qobi/software.html";
|
|
license = lib.licenses.gpl2Plus;
|
|
description = "Optimizing Scheme compiler";
|
|
|
|
maintainers = [ ];
|
|
platforms = [ "i686-linux" ]; # doesn't want to work on 64-bit platforms
|
|
};
|
|
}
|