tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
julius: use SRI hash format
AndersonTorres
3 years ago
e28fc76d
0036078a
+11
-4
1 changed file
expand all
collapse all
unified
split
pkgs
games
julius
default.nix
+11
-4
pkgs/games/julius/default.nix
···
1
-
{ lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, libpng }:
0
0
0
0
0
0
0
2
3
stdenv.mkDerivation rec {
4
pname = "julius";
···
8
owner = "bvschaik";
9
repo = "julius";
10
rev = "v${version}";
11
-
sha256 = "0w7kmgz9ya0ck9cxhsyralarg7y6ydx4plmh33r4mkxkamlr7493";
12
};
13
14
nativeBuildInputs = [ cmake ];
15
buildInputs = [ SDL2 SDL2_mixer libpng ];
16
17
meta = with lib; {
0
18
description = "An open source re-implementation of Caesar III";
19
-
homepage = "https://github.com/bvschaik/julius";
20
license = licenses.agpl3;
0
21
platforms = platforms.all;
22
broken = stdenv.isDarwin;
23
-
maintainers = with maintainers; [ Thra11 ];
24
};
25
}
···
1
+
{ lib
2
+
, stdenv
3
+
, fetchFromGitHub
4
+
, SDL2
5
+
, SDL2_mixer
6
+
, cmake
7
+
, libpng
8
+
}:
9
10
stdenv.mkDerivation rec {
11
pname = "julius";
···
15
owner = "bvschaik";
16
repo = "julius";
17
rev = "v${version}";
18
+
hash = "sha256-I5GTaVWzz0ryGLDSS3rzxp+XFVXZa9hZmgwon/6r83A=";
19
};
20
21
nativeBuildInputs = [ cmake ];
22
buildInputs = [ SDL2 SDL2_mixer libpng ];
23
24
meta = with lib; {
25
+
homepage = "https://github.com/bvschaik/julius";
26
description = "An open source re-implementation of Caesar III";
0
27
license = licenses.agpl3;
28
+
maintainers = with maintainers; [ Thra11 ];
29
platforms = platforms.all;
30
broken = stdenv.isDarwin;
0
31
};
32
}