tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
colobot-data: modernize
Anton Mosich
10 months ago
29a46e30
6b691c15
+8
-8
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
co
colobot
data.nix
+8
-8
pkgs/by-name/co/colobot/data.nix
···
10
10
python3,
11
11
}:
12
12
13
13
-
stdenv.mkDerivation rec {
13
13
+
stdenv.mkDerivation (finalAttrs: {
14
14
pname = "colobot-data";
15
15
version = "0.2.0-alpha";
16
16
17
17
src = fetchFromGitHub {
18
18
owner = "colobot";
19
19
repo = "colobot-data";
20
20
-
rev = "colobot-gold-${version}";
21
21
-
sha256 = "sha256-yzIbAzrGsDe6hO0GHF9gjnj7IE8B7+5LDbvjZi4Wtms=";
20
20
+
tag = "colobot-gold-${finalAttrs.version}";
21
21
+
hash = "sha256-yzIbAzrGsDe6hO0GHF9gjnj7IE8B7+5LDbvjZi4Wtms=";
22
22
};
23
23
24
24
nativeBuildInputs = [
···
45
45
cd localSrc
46
46
'';
47
47
48
48
-
meta = with lib; {
48
48
+
meta = {
49
49
homepage = "https://colobot.info/";
50
50
description = "Game data for colobot";
51
51
-
license = licenses.gpl3;
52
52
-
maintainers = with maintainers; [ freezeboy ];
53
53
-
platforms = platforms.linux;
51
51
+
license = lib.licenses.gpl3;
52
52
+
maintainers = with lib.maintainers; [ freezeboy ];
53
53
+
platforms = lib.platforms.linux;
54
54
};
55
55
-
}
55
55
+
})