tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
gleam: 1.0.0 -> 1.1.0
R. Ryantm
2 years ago
3fbb8ce5
81a5d0fc
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
gleam
default.nix
+3
-3
pkgs/development/compilers/gleam/default.nix
···
12
13
rustPlatform.buildRustPackage rec {
14
pname = "gleam";
15
-
version = "1.0.0";
16
17
src = fetchFromGitHub {
18
owner = "gleam-lang";
19
repo = pname;
20
rev = "refs/tags/v${version}";
21
-
hash = "sha256-gPlRihwK+J7s1SeymfVdVo/KIV+eEqxlLVOgsDWW9yo";
22
};
23
24
nativeBuildInputs = [ git pkg-config ];
···
26
buildInputs = [ openssl ] ++
27
lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
28
29
-
cargoHash = "sha256-ouu4Y1085dGSM7kGIWE+hBde6ZUOA1fO0AcHYXPOWzo=";
30
31
passthru.updateScript = nix-update-script { };
32
···
12
13
rustPlatform.buildRustPackage rec {
14
pname = "gleam";
15
+
version = "1.1.0";
16
17
src = fetchFromGitHub {
18
owner = "gleam-lang";
19
repo = pname;
20
rev = "refs/tags/v${version}";
21
+
hash = "sha256-3DlsqUBAKF3zgiS26YQY1MzymLg9GnVzH1HMpbYv5Dc=";
22
};
23
24
nativeBuildInputs = [ git pkg-config ];
···
26
buildInputs = [ openssl ] ++
27
lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
28
29
+
cargoHash = "sha256-KROGDBOsx1WTzv7IhJ3WWLJJ9zvrmZI5poJCr2tFcLY=";
30
31
passthru.updateScript = nix-update-script { };
32