Skip to content

Commit

Permalink
[deno] Add 1.44.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nktpro committed May 31, 2024
1 parent 563eb86 commit 4817737
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
3 changes: 3 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@
deno_1_41_x = pkgs.callPackage ./pkgs/deno-1.41.x.nix { };
deno_1_42_x = pkgs.callPackage ./pkgs/deno-1.42.x.nix { };
deno_1_43_x = pkgs.callPackage ./pkgs/deno-1.43.x.nix { };
deno_1_44_x = pkgs.callPackage ./pkgs/deno-1.44.x.nix { };
denort_1_41_x = pkgs.callPackage ./pkgs/denort-1.41.x.nix { };
denort_1_42_x = pkgs.callPackage ./pkgs/denort-1.42.x.nix { };
denort_1_43_x = pkgs.callPackage ./pkgs/denort-1.43.x.nix { };
denort_1_44_x = pkgs.callPackage ./pkgs/denort-1.44.x.nix { };
deno = deno_1_43_x.overrideAttrs (oldAttrs: {
meta = oldAttrs.meta // {
priority = 0;
Expand Down Expand Up @@ -167,6 +169,7 @@
{
inherit
deno denort deno_1_38_x deno_1_41_x denort_1_41_x deno_1_42_x denort_1_42_x deno_1_43_x denort_1_43_x
deno_1_44_x denort_1_44_x
intellij-helper manifest-tool jdk17 jre17 regclient
skopeo-nix2container redpanda hasura-cli
kubesess kubeshark
Expand Down
20 changes: 20 additions & 0 deletions pkgs/deno-1.44.x.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ autoPatchelfHook, fetchzip, stdenv, lib, makeWrapper }:
(import ./deno.nix rec {
inherit autoPatchelfHook fetchzip stdenv lib makeWrapper;
version = "1.44.0";
downloadMap = {
x86_64-linux = {
url = "https://github.com/denoland/deno/releases/download/v${version}/deno-x86_64-unknown-linux-gnu.zip";
hash = "sha256-xy8Am38gR+yhRphfFxLRb2PjaiUFC58oYfJV06k6ppI=";
};
aarch64-darwin = {
url = "https://github.com/denoland/deno/releases/download/v${version}/deno-aarch64-apple-darwin.zip";
hash = "sha256-avQvB2kVh1pTM6RjsB5B4ORfHngFl81y4lG6kGVEN/Y=";
};
aarch64-linux = {
url = "https://github.com/denoland/deno/releases/download/v${version}/deno-aarch64-unknown-linux-gnu.zip";
hash = "sha256-CohDc7C7orilIHkaHzB8CHd7BIinwjWgHZFsu1WOHz4=";
};
};
priority = 10;
})
20 changes: 20 additions & 0 deletions pkgs/denort-1.44.x.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ autoPatchelfHook, fetchzip, stdenv, lib, makeWrapper }:
(import ./denort.nix rec {
inherit autoPatchelfHook fetchzip stdenv lib makeWrapper;
version = "1.44.0";
downloadMap = {
x86_64-linux = {
url = "https://github.com/denoland/deno/releases/download/v${version}/denort-x86_64-unknown-linux-gnu.zip";
hash = "sha256-nst4IV3WjSCD9yV3Tl4tKvePTtwblrjyDTppfl0P2SE=";
};
aarch64-darwin = {
url = "https://github.com/denoland/deno/releases/download/v${version}/denort-aarch64-apple-darwin.zip";
hash = "sha256-xSVTUnR6q0VG6bADYZYokYH8TLr4OrvSpwOXMDo70GY=";
};
aarch64-linux = {
url = "https://github.com/denoland/deno/releases/download/v${version}/denort-aarch64-unknown-linux-gnu.zip";
hash = "sha256-BMPMsM/zVTgJ4SqRxWd0QZHMteesILKmtZtYCd7YunI=";
};
};
priority = 10;
})

0 comments on commit 4817737

Please sign in to comment.