mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
32 lines
891 B
Nix
32 lines
891 B
Nix
{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 = ''
|
|
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 = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.antono ];
|
|
};
|
|
|
|
}
|