Skip to content

Commit

Permalink
Merge pull request #1604 from hgouni/fix-flake-hash
Browse files Browse the repository at this point in the history
Fix flake hash, binary names on linux
  • Loading branch information
cxxxr authored Nov 14, 2024
2 parents f93e750 + 3c2e566 commit c4fcbf0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
dontFixup = true;
outputHashMode = "recursive";
outputHash =
"sha256-wRK5dU+mieajaA55cXbLoH2hvgP3wp61PN1pdooXD7o=";
"sha256-Ya1f0GcDBIRuJDgIC03Mp325ns393zwQ9DNGlbAhqOY=";
};

configurePhase = ''
Expand Down Expand Up @@ -154,11 +154,13 @@
in {
packages.lem-ncurses = lem.overrideLispAttrs (o: {
pname = "lem-ncurses";
meta.mainProgram = "lem";
systems = [ "lem-ncurses" ];
nativeLibs = with pkgs; o.nativeLibs ++ [ ncurses ];
});
packages.lem-sdl2 = lem.overrideLispAttrs (o: {
pname = "lem-sdl2";
meta.mainProgram = "lem";
systems = [ "lem-sdl2" ];
nativeLibs = with pkgs;
o.nativeLibs ++ [ SDL2 SDL2_ttf SDL2_image ];
Expand Down

0 comments on commit c4fcbf0

Please sign in to comment.