tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
zdoom: use SRI hash format
AndersonTorres
3 years ago
ce51fe80
95390a3e
+8
-3
1 changed file
expand all
collapse all
unified
split
pkgs
games
zdoom
zdbsp.nix
+8
-3
pkgs/games/zdoom/zdbsp.nix
···
1
-
{ lib, stdenv, fetchzip, cmake, zlib }:
0
0
0
0
0
2
3
stdenv.mkDerivation rec {
4
pname = "zdbsp";
···
6
7
src = fetchzip {
8
url = "https://zdoom.org/files/utils/zdbsp/zdbsp-${version}-src.zip";
9
-
sha256 = "1j6k0appgjjj3ffbll9hy9nnbqr17szd1s66q08zrbkfqf6g8f0d";
10
stripRoot = false;
11
};
12
···
23
'';
24
25
meta = with lib; {
26
-
description = "ZDoom's internal node builder for DOOM maps";
27
homepage = "https://zdoom.org/wiki/ZDBSP";
0
28
license = licenses.gpl2Plus;
29
maintainers = with maintainers; [ lassulus siraben ];
30
platforms = platforms.unix;
···
1
+
{ lib
2
+
, stdenv
3
+
, fetchzip
4
+
, cmake
5
+
, zlib
6
+
}:
7
8
stdenv.mkDerivation rec {
9
pname = "zdbsp";
···
11
12
src = fetchzip {
13
url = "https://zdoom.org/files/utils/zdbsp/zdbsp-${version}-src.zip";
14
+
sha256 = "sha256-DTj0jMNurvwRwMbo0L4+IeNlbfIwUbqcG1LKd68C08g=";
15
stripRoot = false;
16
};
17
···
28
'';
29
30
meta = with lib; {
0
31
homepage = "https://zdoom.org/wiki/ZDBSP";
32
+
description = "ZDoom's internal node builder for DOOM maps";
33
license = licenses.gpl2Plus;
34
maintainers = with maintainers; [ lassulus siraben ];
35
platforms = platforms.unix;