depot/third_party/nixpkgs/pkgs/misc/emulators/bsod/default.nix
Default email 1ae14203fc Project import generated by Copybara.
GitOrigin-RevId: 68398d2dd50efc2d878bf0f83bbc8bc323b6b0e0
2021-01-17 01:15:33 +01:00

31 lines
880 B
Nix

{lib, stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "bsod-0.1";
src = fetchurl {
url = "https://www.vanheusden.com/bsod/bsod-0.1.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 ];
};
}