summary refs log tree commit diff
path: root/pkgs/wine.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/wine.nix')
-rw-r--r--pkgs/wine.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/wine.nix b/pkgs/wine.nix
new file mode 100644
index 0000000..1a1d51c
--- /dev/null
+++ b/pkgs/wine.nix
@@ -0,0 +1,23 @@
+{
+  wineWowPackages,
+  fetchFromGitLab,
+  ...
+}:
+
+let
+  rev = "57a658eb4a2623d801ab696e584ea08a682c4852";
+  version = "9.9-unstable+${rev}";
+in
+wineWowPackages.unstable.overrideAttrs (
+  final: prev: {
+    inherit version;
+    # this branch includes a patch for speeding up clip studio paint startup.
+    src = fetchFromGitLab {
+      inherit rev;
+      hash = "sha256-A3Pz3lwkaHUs5L/yaTypVmJCsYg+Ze9wZVB5DO7iJWo=";
+      domain = "gitlab.winehq.org";
+      owner = "DarkShadow44";
+      repo = "wine";
+    };
+  }
+)