tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
deutex: init at 5.2.3
TheTaoOfSu
11 months ago
35cfb482
da1459db
+42
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
de
deutex
package.nix
+42
pkgs/by-name/de/deutex/package.nix
reviewed
···
1
1
+
{
2
2
+
stdenv,
3
3
+
lib,
4
4
+
autoreconfHook,
5
5
+
fetchFromGitHub,
6
6
+
pkg-config,
7
7
+
libpng,
8
8
+
}:
9
9
+
10
10
+
stdenv.mkDerivation (finalAttrs: {
11
11
+
pname = "deutex";
12
12
+
version = "5.2.3";
13
13
+
14
14
+
src = fetchFromGitHub {
15
15
+
owner = "Doom-Utils";
16
16
+
repo = "deutex";
17
17
+
tag = "v${finalAttrs.version}";
18
18
+
hash = "sha256-wDAlwOtupkYv6y4fQPwL/PVOhh7wqORnjxV22kmON+U=";
19
19
+
};
20
20
+
21
21
+
nativeBuildInputs = [
22
22
+
autoreconfHook
23
23
+
pkg-config
24
24
+
];
25
25
+
26
26
+
buildInput = [
27
27
+
libpng
28
28
+
];
29
29
+
30
30
+
meta = {
31
31
+
description = "Command-line tool to create and modify WAD files for games built on the original Doom engine";
32
32
+
homepage = "https://github.com/Doom-Utils/deutex";
33
33
+
license = with lib.licenses; [
34
34
+
gpl2Plus
35
35
+
hpnd
36
36
+
lgpl21Plus
37
37
+
];
38
38
+
maintainers = with lib.maintainers; [ thetaoofsu ];
39
39
+
mainProgram = "deutex";
40
40
+
platforms = lib.platforms.unix;
41
41
+
};
42
42
+
})