tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
torus-trooper: use finalAttrs pattern
Francesco Gazzetta
2 years ago
57489ed0
0d502d2c
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
games
torus-trooper
default.nix
+3
-3
pkgs/games/torus-trooper/default.nix
···
16
16
sha256 = hash;
17
17
};
18
18
19
19
-
in stdenv.mkDerivation rec {
19
19
+
in stdenv.mkDerivation (finalAttrs: {
20
20
pname = "torus-trooper";
21
21
version = "0.22";
22
22
23
23
src = fetchurl {
24
24
-
url = "http://abagames.sakura.ne.jp/windows/tt${lib.replaceStrings ["."] ["_"] version}.zip";
24
24
+
url = "http://abagames.sakura.ne.jp/windows/tt${lib.replaceStrings ["."] ["_"] finalAttrs.version}.zip";
25
25
sha256 = "1yhki1fdp3fi4y2iq12vca69f6k38dqjaw9z4lwcxky5kbgb7jvg";
26
26
};
27
27
···
101
101
maintainers = with maintainers; [ fgaz ];
102
102
platforms = platforms.all;
103
103
};
104
104
-
}
104
104
+
})