summary refs log tree commit diff
path: root/pkgs/applications/misc/slade
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-12-25 03:22:25 +0300
committerNikolay Amiantov <ab@fmap.me>2016-12-25 03:23:57 +0300
commit4c891ac6388eec03b047b0854ea9c9ea2fc246fc (patch)
treeb0b8f4d64269d13f51c0ecc7599bfb8384b08dd9 /pkgs/applications/misc/slade
parent585c642bf8adf495d66e1f4ea6d96bc767730347 (diff)
downloadnixpkgs-4c891ac6388eec03b047b0854ea9c9ea2fc246fc.tar
nixpkgs-4c891ac6388eec03b047b0854ea9c9ea2fc246fc.tar.gz
nixpkgs-4c891ac6388eec03b047b0854ea9c9ea2fc246fc.tar.bz2
nixpkgs-4c891ac6388eec03b047b0854ea9c9ea2fc246fc.tar.lz
nixpkgs-4c891ac6388eec03b047b0854ea9c9ea2fc246fc.tar.xz
nixpkgs-4c891ac6388eec03b047b0854ea9c9ea2fc246fc.tar.zst
nixpkgs-4c891ac6388eec03b047b0854ea9c9ea2fc246fc.zip
slade: init at 3.1.1.4
Diffstat (limited to 'pkgs/applications/misc/slade')
-rw-r--r--pkgs/applications/misc/slade/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/misc/slade/default.nix b/pkgs/applications/misc/slade/default.nix
new file mode 100644
index 00000000000..b50c2f18690
--- /dev/null
+++ b/pkgs/applications/misc/slade/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, wxGTK, gtk2, sfml, fluidsynth, curl, freeimage, ftgl, glew, zip }:
+
+stdenv.mkDerivation rec {
+  name = "slade-${version}";
+  version = "3.1.1.4";
+
+  src = fetchFromGitHub {
+    owner = "sirjuddington";
+    repo = "SLADE";
+    rev = version;
+    sha256 = "0c2yjkpcwxkid1wczmc9f16x1p40my8jv61jc93ldgjzcprmrpn8";
+  };
+
+  nativeBuildInputs = [ cmake pkgconfig zip ];
+  buildInputs = [ wxGTK gtk2 sfml fluidsynth curl freeimage ftgl glew ];
+
+  enableParallelBuilding = true;
+
+  meta = with stdenv.lib; {
+    description = "Doom editor";
+    homepage = "http://slade.mancubus.net/";
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ abbradar ];
+  };
+}