dlx: cleanup (#93655)

This commit is contained in:
Ivar 2021-04-05 06:48:48 +02:00 committed by GitHub
parent 6760947fa3
commit 2870b314b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,31 +1,29 @@
{ lib, stdenv, fetchurl, unzip }:
{ lib, stdenv, fetchzip }:
stdenv.mkDerivation {
name = "dlx-2012.07.08";
stdenv.mkDerivation rec {
pname = "dlx";
version = "2012-07-08";
src = fetchurl {
src = fetchzip {
url = "https://www.davidviner.com/zip/dlx/dlx.zip";
sha256 = "0q5hildq2xcig7yrqi26n7fqlanyssjirm7swy2a9icfxpppfpkn";
sha256 = "0508linnar9ivy3xr99gzrb2l027ngx12dlxaxs7w67cnwqnb0dg";
};
nativeBuildInputs = [ unzip ];
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "LINK=${stdenv.cc.targetPrefix}cc" "CFLAGS=-O2" ];
hardeningDisable = [ "format" ];
installPhase = ''
mkdir -p $out/include/dlx $out/share/dlx/{examples,doc} $out/bin
mv -v masm mon dasm $out/bin/
mv -v *.i auto.a $out/include/dlx/
mv -v *.a *.m $out/share/dlx/examples/
mv -v README.txt MANUAL.TXT $out/share/dlx/doc/
mv masm mon dasm $out/bin/
mv *.i auto.a $out/include/dlx/
mv *.a *.m $out/share/dlx/examples/
mv README.txt MANUAL.TXT $out/share/dlx/doc/
'';
meta = {
homepage = "http://www.davidviner.com/dlx.php";
description = "DLX Simulator";
license = lib.licenses.gpl2;
platforms = lib.platforms.all;
meta = with lib; {
homepage = "https://www.davidviner.com/dlx.html?name=DLX+Simulator";
description = "An DLX simulator written in C";
license = licenses.gpl2Only;
platforms = platforms.linux;
};
}