tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tiled: 1.1.1 -> 1.1.2
dywedir
8 years ago
490ae6a5
65170e94
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
editors
tiled
default.nix
+3
-2
pkgs/applications/editors/tiled/default.nix
···
3
4
stdenv.mkDerivation rec {
5
name = "tiled-${version}";
6
-
version = "1.1.1";
7
8
src = fetchFromGitHub {
9
owner = "bjorn";
10
repo = "tiled";
11
rev = "v${version}";
12
-
sha256 = "1c6n5xshadxv5qwv8kfrj1kbfnkvx6nyxc9p4mpzkjrkxw1b1qf1";
13
};
14
15
nativeBuildInputs = [ pkgconfig qmake ];
···
24
bsd2 # libtiled and tmxviewer
25
gpl2Plus # all the rest
26
];
0
27
platforms = platforms.linux;
28
};
29
}
···
3
4
stdenv.mkDerivation rec {
5
name = "tiled-${version}";
6
+
version = "1.1.2";
7
8
src = fetchFromGitHub {
9
owner = "bjorn";
10
repo = "tiled";
11
rev = "v${version}";
12
+
sha256 = "1bzp89914rlrwf2whky3fx10rwxqiwbw9acyqllvam3l4hmv4nlz";
13
};
14
15
nativeBuildInputs = [ pkgconfig qmake ];
···
24
bsd2 # libtiled and tmxviewer
25
gpl2Plus # all the rest
26
];
27
+
maintainers = with maintainers; [ dywedir ];
28
platforms = platforms.linux;
29
};
30
}