nixpkgs/pkgs/by-name/un/unicon-lang/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

53 lines
1.5 KiB
Nix

{ lib, stdenv, fetchurl, unzip, libX11, libXt, libnsl, libxcrypt }:
stdenv.mkDerivation {
pname = "unicon-lang";
version = "11.7";
src = fetchurl {
url = "http://unicon.org/dist/uni-2-4-2010.zip";
sha256 = "1g9l2dfp99dqih2ir2limqfjgagh3v9aqly6x0l3qavx3qkkwf61";
};
nativeBuildInputs = [ unzip ];
buildInputs = [ libnsl libX11 libXt libxcrypt ];
hardeningDisable = [ "fortify" ];
sourceRoot = ".";
# Workaround build failure on -fno-common toolchains like upstream
# gcc-10. Otherwise build fails as:
# ld: ../common/ipp.o:(.bss+0x0): multiple definition of `lpath'; tglobals.o:(.bss+0x30): first defined here
# TODO: remove the workaround once upstream releases version past:
# https://sourceforge.net/p/unicon/unicon/ci/b1a65230233f3825d055aee913b4fdcf178a0eaf/
env.NIX_CFLAGS_COMPILE = "-fcommon";
configurePhase = ''
case "$(uname -a | sed 's/ /_/g')" in
Darwin*Version_9*i386) sys=intel_macos;;
Linux*x86_64*) sys=amd64_linux;;
Linux*i686*) sys=intel_linux;;
*) sys=unknown;;
esac
echo "all: ; echo" > uni/3d/makefile
make X-Configure name=$sys
'';
buildPhase = ''
make Unicon
'';
installPhase = ''
mkdir -p $out/
cp -r bin $out/
'';
meta = with lib; {
broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64);
description = "Very high level, goal-directed, object-oriented, general purpose applications language";
maintainers = [ ];
platforms = platforms.linux;
license = licenses.gpl2;
homepage = "http://unicon.org";
};
}