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