bsod: remove

This commit is contained in:
Ben Siraphob 2022-01-07 13:47:07 +07:00
parent 95d3bdb7a6
commit 45e81e03ac
No known key found for this signature in database
GPG Key ID: 45F0E5D788143267
3 changed files with 1 additions and 34 deletions

View File

@ -1,32 +0,0 @@
{lib, stdenv, fetchurl, ncurses}:
stdenv.mkDerivation rec {
pname = "bsod";
version = "0.1";
src = fetchurl {
url = "https://www.vanheusden.com/bsod/bsod-${version}.tgz";
sha256 = "0hqwacazyq5rhc04j8w8w0j0dgb6ca8k66c9lxf6bsyi6wvbhvmd";
};
buildInputs = [ ncurses ];
installPhase = ''
mkdir -p $out/bin
cp bsod $out/bin
'';
meta = {
description = "Blue Screen Of Death emulator for Unix";
longDescription = "
This program will let you UNIX user experience the authentic
microsoft windows experience. Bsod displays the famous windows xp
blue screen of death on the console. Errors and drivers causing the
error are selected randomly from a large set of examples.";
homepage = "http://www.vanheusden.com/bsod/";
license = lib.licenses.gpl2;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.antono ];
};
}

View File

@ -101,6 +101,7 @@ mapAliases ({
bitwarden_rs-vault = vaultwarden-vault;
bs1770gain = throw "bs1770gain has been removed from nixpkgs, as it had no maintainer or reverse dependencies."; # added 2021-01-02
bsod = throw "bsod has been removed: deleted by upstream"; # added 2022-01-07
btc1 = throw "btc1 has been removed, it was abandoned by upstream"; # added 2020-11-03
buildPerlPackage = perlPackages.buildPerlPackage; # added 2018-10-12
buildGo112Package = throw "buildGo112Package has been removed"; # added 2020-04-26

View File

@ -2333,8 +2333,6 @@ with pkgs;
breakpointHook = assert stdenv.isLinux;
makeSetupHook { } ../build-support/setup-hooks/breakpoint-hook.sh;
bsod = callPackage ../misc/emulators/bsod { };
py65 = python3Packages.callPackage ../misc/emulators/py65 { };
simh = callPackage ../misc/emulators/simh { };