Skip to content

Commit

Permalink
fix: Rollback nix to previous used pin
Browse files Browse the repository at this point in the history
Part of #54

3e889463e499537c602e3ea83da6e33f9dc974da has a broken rpm/rpmbuild

eb28b94bd14835836b539bc3854a6abf929876d4 is previously used pin and it
works with it
  • Loading branch information
Gashmob committed Jan 7, 2025
1 parent 6e4471c commit cb51bf0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tools/nix/antlr4.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ let
src = fetchFromGitHub {
owner = "antlr";
repo = "antlr4";
tag = version;
rev = version;
hash = srcHash;
};

Expand Down
2 changes: 1 addition & 1 deletion tools/nix/cxxopts.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "jarro2783";
repo = "cxxopts";
tag = "v${version}";
rev = "v${version}";
hash = "sha256-tOO0YCIG3MxSJZhurNcDR1pWIUEO/Har9mrCrZs3iVk=";
};

Expand Down
4 changes: 2 additions & 2 deletions tools/nix/pin-nixpkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

let
pinNixpkgs = import (fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/3e889463e499537c602e3ea83da6e33f9dc974da.tar.gz";
sha256 = "1w7hilh5ix6vppxh5c2zd71l4k1y5wsx5h5s4jya3vw2hhhr99v6";
url = "https://github.com/NixOS/nixpkgs/archive/eb28b94bd14835836b539bc3854a6abf929876d4.tar.gz";
sha256 = "1wwr70sw70ib0qdr0cf7d9g7czlib5zm8hg8xjll7lsind6cfvwi";
} ) { config = {}; overlays = []; };
in pinNixpkgs

0 comments on commit cb51bf0

Please sign in to comment.