1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #26 from antono/bsod-emulator

Added bsod emulator for unix
This commit is contained in:
Rob Vermaas 2012-06-25 09:02:26 -07:00
commit 89e4069ce1
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "bsod-0.1";
src = fetchurl {
url = http://www.vanheusden.com/bsod/bsod-0.1.tgz;
sha256 = "0hqwacazyq5rhc04j8w8w0j0dgb6ca8k66c9lxf6bsyi6wvbhvmd";
};
buildInputs = [ ncurses ];
installPhase = ''
ensureDir $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 = "GPLv2";
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.antono ];
};
}

View file

@ -437,6 +437,8 @@ let
bootchart = callPackage ../tools/system/bootchart { };
bsod = callPackage ../misc/emulators/bsod { };
btrfsProgs = builderDefsPackage (import ../tools/filesystems/btrfsprogs) {
inherit (pkgs) libuuid zlib acl attr fetchgit e2fsprogs;
};