nixpkgs/pkgs/games/hexen/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

19 lines
485 B
Nix

{stdenv, fetchurl, SDL} :
stdenv.mkDerivation {
name = "hexen-0.2.3";
src = fetchurl {
url = https://www.libsdl.org/projects/hexen/src/hexen-0.2.3.tar.gz;
sha256 = "c1433e930f2003c5f817f935406bb28ba15298a15b1c11f83f42df3e9f1f3bc4";
};
buildInputs = [ SDL ];
meta = {
homepage = http://www.libsdl.org/projects/hexen/;
description = "Port of Raven Software's popular Hexen 3-D shooter game";
license = stdenv.lib.licenses.free;
broken = true;
};
}