nixpkgs/pkgs/misc/emulators/dlx/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

32 lines
783 B
Nix

{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation {
name = "dlx-2012.07.08";
src = fetchurl {
url = "https://www.davidviner.com/zip/dlx/dlx.zip";
sha256 = "0q5hildq2xcig7yrqi26n7fqlanyssjirm7swy2a9icfxpppfpkn";
};
buildInputs = [ unzip ];
makeFlags = "LINK=gcc 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/
'';
meta = {
homepage = http://www.davidviner.com/dlx.php;
description = "DLX Simulator";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
};
}