tiled: 0.17.0 -> 0.18.2
This commit is contained in:
parent
b00bfb0401
commit
c5ce21ec80
@ -1,16 +1,17 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, qmakeHook
|
{ stdenv, fetchFromGitHub, pkgconfig, qmakeHook
|
||||||
, python, qtbase, qttools, zlib }:
|
, python, qtbase, qttools, zlib }:
|
||||||
|
|
||||||
let
|
let
|
||||||
# qtEnv = with qt5; env "qt-${qtbase.version}" [ qtbase qttools ];
|
# qtEnv = with qt5; env "qt-${qtbase.version}" [ qtbase qttools ];
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
name = "tiled-${version}";
|
name = "tiled-${version}";
|
||||||
version = "0.17.0";
|
version = "0.18.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
name = "${name}.tar.gz";
|
owner = "bjorn";
|
||||||
url = "https://github.com/bjorn/tiled/archive/v${version}.tar.gz";
|
repo = "tiled";
|
||||||
sha256 = "0c9gykxmq0sk0yyfdq81g9psd922scqzn5asskjydj84d80f5z7p";
|
rev = "v${version}";
|
||||||
|
sha256 = "087jl36g6w2g5l70gz573iwyvx3r7i8fijl3y4mmmf8pyqdyq1n2";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig qmakeHook ];
|
nativeBuildInputs = [ pkgconfig qmakeHook ];
|
||||||
@ -26,6 +27,6 @@ in stdenv.mkDerivation rec {
|
|||||||
gpl2Plus # all the rest
|
gpl2Plus # all the rest
|
||||||
];
|
];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ nckx ];
|
maintainers = [ maintainers.nckx ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user