Skip to content

Instantly share code, notes, and snippets.

@markus1189
Created March 27, 2021 13:56
Show Gist options
  • Save markus1189/f7838bf729efe5d73e684122d8313bb9 to your computer and use it in GitHub Desktop.
Save markus1189/f7838bf729efe5d73e684122d8313bb9 to your computer and use it in GitHub Desktop.
Nix buildFHSEnv expression for OtherWorldMapper (Demo)
{ pkgs ? import <nixpkgs> {}}:
(pkgs.buildFHSUserEnv {
name = "OtherWorldMapper-FHS";
targetPkgs = pkgs: with pkgs; [
gtk2-x11
xorg.libX11
expat
util-linux
pango
cairo
glib
fontconfig
freetype
libpng
libtiff
zlib
cups
xlibs.libXxf86vm
xlibs.libSM
xlibs.libXtst
];
runScript = "./OWM";
}).env
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment