Skip to content

Instantly share code, notes, and snippets.

@markus1189
Created March 27, 2021 14:20
Show Gist options
  • Save markus1189/5cd5fef6559492291bed077318606b55 to your computer and use it in GitHub Desktop.
Save markus1189/5cd5fef6559492291bed077318606b55 to your computer and use it in GitHub Desktop.
Nix buildFHSEnv for DungeonDraft
{ pkgs ? import <nixpkgs> { } }:
(pkgs.buildFHSUserEnv {
name = "DungeonDraftFhs";
targetPkgs = pkgs:
with pkgs; [
alsaLib
libglvnd
pulseaudioLight
] ++ (with xlibs; [
libX11
libXcursor
libXi
libXinerama
libXrandr
libXrender
]);
runScript = "./Dungeondraft.x86_64";
}).env
@markus1189
Copy link
Author

Sorry, I am not actively using dungeondraft anymore, so I am not much of a help here.

Maybe a search on github can help? https://sourcegraph.com/search?q=context:global+dungeondraft+file:.*%5C.nix&patternType=keyword&sm=0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment