Skip to content

Instantly share code, notes, and snippets.

@ento
Created February 20, 2020 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ento/2769353023f195c48e3a0322d90b630d to your computer and use it in GitHub Desktop.
Save ento/2769353023f195c48e3a0322d90b630d to your computer and use it in GitHub Desktop.
Nix overlay for Wine 4
# I thought this might allow running Adobe Digital Editions 2.0.1 but it didn't work.
# Leaving a gist so that I don't need to look up the commit when I need it again.
self: super:
let
pkgsPath = builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/8a83fb70d01a953ef72293e0034474a5a93ef3c0.tar.gz";
sha256 = "0f2blhwpy5vbxzrbyykn0jk0da9srgnfv4yaxi3yhmlpinlx84m9";
};
in {
wine_4 = (import pkgsPath { }).wineUnstable;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment