forked from mirrors/nixpkgs
Added bsod emulator for unix
This commit is contained in:
parent
484c13cce1
commit
182f0dfe5e
8
pkgs/misc/emulators/bsod/builder.sh
Normal file
8
pkgs/misc/emulators/bsod/builder.sh
Normal file
|
@ -0,0 +1,8 @@
|
|||
source $stdenv/setup
|
||||
|
||||
tar xvfz $src
|
||||
cd bsod-*
|
||||
make
|
||||
mkdir -p $out/bin
|
||||
cp bsod $out/bin
|
||||
|
28
pkgs/misc/emulators/bsod/default.nix
Normal file
28
pkgs/misc/emulators/bsod/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{stdenv, fetchurl, ncurses}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "bsod-0.1";
|
||||
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.vanheusden.com/bsod/bsod-0.1.tgz;
|
||||
sha256 = "0hqwacazyq5rhc04j8w8w0j0dgb6ca8k66c9lxf6bsyi6wvbhvmd";
|
||||
};
|
||||
|
||||
buildInputs = [ ncurses ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue