From b202dcb6067bfe167a7448b85fe9cf1cfc187d7c Mon Sep 17 00:00:00 2001 From: 宋文武 Date: Wed, 21 Jan 2015 13:14:12 +0800 Subject: tiled: Update to 0.11.0, renamed from tiled-qt. --- pkgs/applications/editors/tiled-qt/default.nix | 24 ------------------------ pkgs/applications/editors/tiled/default.nix | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+), 24 deletions(-) delete mode 100644 pkgs/applications/editors/tiled-qt/default.nix create mode 100644 pkgs/applications/editors/tiled/default.nix (limited to 'pkgs/applications/editors') diff --git a/pkgs/applications/editors/tiled-qt/default.nix b/pkgs/applications/editors/tiled-qt/default.nix deleted file mode 100644 index 05020df01a0e8..0000000000000 --- a/pkgs/applications/editors/tiled-qt/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ stdenv, fetchurl, qt }: - -stdenv.mkDerivation rec { - name = "tiled-qt-0.9.1"; - - src = fetchurl { - url = "mirror://sourceforge/tiled/${name}.tar.gz"; - sha256 = "09xm6ry56zsqbfl9fvlvc5kq9ikzdskm283r059q6rlc7crzhs38"; - }; - - buildInputs = [ qt ]; - - preConfigure = "qmake -r PREFIX=$out"; - - meta = { - description = "A free, easy to use and flexible tile map editor"; - homepage = "http://www.mapeditor.org/"; - # libtiled and tmxviewer is licensed under 2-calause BSD license. - # The rest is GPL2 or later. - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; - }; -} diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix new file mode 100644 index 0000000000000..92cd507130609 --- /dev/null +++ b/pkgs/applications/editors/tiled/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, qt }: + +stdenv.mkDerivation rec { + name = "tiled-0.11.0"; + + src = fetchurl { + url = "https://github.com/bjorn/tiled/archive/v0.11.0.tar.gz"; + sha256 = "03a15vbzjfwc8dpifbjvd0gnr208mzmdkgs2nlc8zq6z0a4h4jqd"; + }; + + buildInputs = [ qt ]; + + preConfigure = "qmake -r PREFIX=$out"; + + meta = { + description = "A free, easy to use and flexible tile map editor"; + homepage = "http://www.mapeditor.org/"; + # libtiled and tmxviewer is licensed under 2-calause BSD license. + # The rest is GPL2 or later. + license = stdenv.lib.licenses.gpl2Plus; + platforms = stdenv.lib.platforms.linux; + maintainers = with stdenv.lib.maintainers; [ iyzsong ]; + }; +} -- cgit 1.4.1