Skip to content

Commit

Permalink
overlays/looking-glass: override stdenv
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Dec 30, 2024
1 parent a64615c commit 9f9eb3f
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions overlays/looking-glass/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
_: _final: prev: {
looking-glass-client = prev.looking-glass-client.overrideAttrs (_oldAttrs: rec {
rev = "0-unstable-2024-10-24";
src = prev.fetchFromGitHub {
owner = "gnif";
repo = "LookingGlass";
rev = "e25492a3a36f7e1fde6e3c3014620525a712a64a";
hash = "sha256-DBmCJRlB7KzbWXZqKA0X4VTpe+DhhYG5uoxsblPXVzg=";
fetchSubmodules = true;
};
looking-glass-client =
(prev.looking-glass-client.override { stdenv = prev.gcc13Stdenv; }).overrideAttrs
(_oldAttrs: rec {
rev = "0-unstable-2024-10-24";
src = prev.fetchFromGitHub {
owner = "gnif";
repo = "LookingGlass";
rev = "e25492a3a36f7e1fde6e3c3014620525a712a64a";
hash = "sha256-DBmCJRlB7KzbWXZqKA0X4VTpe+DhhYG5uoxsblPXVzg=";
fetchSubmodules = true;
};

patches = [ ];
});
patches = [ ];
});
}

0 comments on commit 9f9eb3f

Please sign in to comment.