Skip to content

Commit

Permalink
Up
Browse files Browse the repository at this point in the history
  • Loading branch information
sikmir committed Jan 23, 2025
1 parent b7cf18e commit 5a33d65
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions pkgs/darwin/qtcreator/bin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@

stdenv.mkDerivation (finalAttrs: {
pname = "qtcreator-bin";
version = "15.0.0";
version = "15.0.1";

src = fetchfromgh {
owner = "qt-creator";
repo = "qt-creator";
tag = "v${finalAttrs.version}";
hash = "sha256-4Z5czgLtU9mrc1HKIkuMWv3O3x3Zul9MJNUHjN7mb0k=";
hash = "sha256-64pmcCvqBnohrmYw+VLUWskOhzmWd9aWZXzFhqG1I9o=";
name = "qtcreator-macos-universal-${finalAttrs.version}.7z";
};

Expand Down
4 changes: 2 additions & 2 deletions pkgs/darwin/zed/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

stdenvNoCC.mkDerivation (finalAttrs: {
pname = "zed";
version = "0.170.0-pre";
version = "0.171.0-pre";

src = fetchurl {
url = "https://zed.dev/api/releases/stable/${finalAttrs.version}/Zed-x86_64.dmg";
hash = "sha256-NpyWPqtlxTmHZZS3Vp+QBbgq9b/fZWqbkUqQ0hjyDMo=";
hash = "sha256-as25FV4ruVmeaz5NTZDmzqV2Zd1MnspjW0Q6Njv1BjQ=";
};

sourceRoot = ".";
Expand Down
5 changes: 3 additions & 2 deletions pkgs/embedded/embox/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "embox-${arch}-qemu";
version = "0.6.4";
version = "0.6.5";

src = fetchFromGitHub {
owner = "embox";
repo = "embox";
tag = "v${finalAttrs.version}";
hash = "sha256-tDA21+B1BF6mQt234IycPdRfYmLGkw/r+SA4AanWk4Q=";
hash = "sha256-HV8Azl1HXHtmL3U38Ey0q3ghE6aDHrQ+G7j7/kQrlUg=";
};

patches = [ ./0001-fix-build.patch ];
Expand Down Expand Up @@ -67,6 +67,7 @@ stdenv.mkDerivation (finalAttrs: {
mkdir -p ./download
ln -s ${third-party.cjson} ./download/cjson-v1.7.16.tar.gz
ln -s ${third-party.acpica-unix} ./download/acpica-R06_28_23.tar.gz
ln -s ${third-party.openlibm} ./download/openlibm-0.8.3.tar.gz
'';

installPhase =
Expand Down
4 changes: 4 additions & 0 deletions pkgs/embedded/embox/third-party.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,9 @@
"cjson": {
"url": "https://github.com/DaveGamble/cJSON/archive/refs/tags/v1.7.16.tar.gz",
"hash": "sha256-RRExqSxV78VFcnaAf8DEwsJwfJ7pbvkMR9aIUtU4TGw="
},
"openlibm": {
"url": "https://github.com/JuliaMath/openlibm/archive/refs/tags/v0.8.3.tar.gz",
"hash": "sha256-n4PkDRGAeZ5YA3FpG+Ui8kXaTC/a4/Cc0zAxcG3kxZw="
}
}
4 changes: 2 additions & 2 deletions pkgs/misc/tg-spam/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

buildGoModule rec {
pname = "tg-spam";
version = "1.14.1";
version = "1.15.0";

src = fetchFromGitHub {
owner = "umputun";
repo = "tg-spam";
tag = "v${version}";
hash = "sha256-qx53EdHGp1JvOV4dvkQ7/pK8L+y2uurWgNdm0DEhOuE=";
hash = "sha256-1nxMpRGaRmdOnboUbyX6+dSDlucaHZCOzA3LZnpeOgs=";
};

vendorHash = null;
Expand Down

0 comments on commit 5a33d65

Please sign in to comment.