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
1
-
{ lib, stdenv, fetchFromGitHub, cmake, SDL2, SDL2_mixer, libpng }:
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, SDL2
5
5
+
, SDL2_mixer
6
6
+
, cmake
7
7
+
, libpng
8
8
+
}:
2
9
3
10
stdenv.mkDerivation rec {
4
11
pname = "julius";
···
8
15
owner = "bvschaik";
9
16
repo = "julius";
10
17
rev = "v${version}";
11
11
-
sha256 = "0w7kmgz9ya0ck9cxhsyralarg7y6ydx4plmh33r4mkxkamlr7493";
18
18
+
hash = "sha256-I5GTaVWzz0ryGLDSS3rzxp+XFVXZa9hZmgwon/6r83A=";
12
19
};
13
20
14
21
nativeBuildInputs = [ cmake ];
15
22
buildInputs = [ SDL2 SDL2_mixer libpng ];
16
23
17
24
meta = with lib; {
25
25
+
homepage = "https://github.com/bvschaik/julius";
18
26
description = "An open source re-implementation of Caesar III";
19
19
-
homepage = "https://github.com/bvschaik/julius";
20
27
license = licenses.agpl3;
28
28
+
maintainers = with maintainers; [ Thra11 ];
21
29
platforms = platforms.all;
22
30
broken = stdenv.isDarwin;
23
23
-
maintainers = with maintainers; [ Thra11 ];
24
31
};
25
32
}