2021-01-17 02:09:27 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, wxGTK, gtk2, sfml, fluidsynth, curl, freeimage, ftgl, glew, zip }:
|
2016-12-25 00:22:25 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "slade";
|
2017-01-29 17:03:45 +00:00
|
|
|
version = "3.1.1.5";
|
2016-12-25 00:22:25 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sirjuddington";
|
|
|
|
repo = "SLADE";
|
|
|
|
rev = version;
|
2017-01-29 17:03:45 +00:00
|
|
|
sha256 = "0mdn59jm6ab4cdh99bgvadif3wdlqmk5mq635gg7krq35njgw6f6";
|
2016-12-25 00:22:25 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config zip ];
|
2016-12-25 00:22:25 +00:00
|
|
|
buildInputs = [ wxGTK gtk2 sfml fluidsynth curl freeimage ftgl glew ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-12-25 00:22:25 +00:00
|
|
|
description = "Doom editor";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://slade.mancubus.net/";
|
2016-12-25 00:22:25 +00:00
|
|
|
license = licenses.gpl2;
|
2018-03-09 13:30:55 +00:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
2016-12-25 00:22:25 +00:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|