commit 6fe47a5e8ee4bf7c6ee05c9953e10a0a0cbb1fca
parent 844f3ad25a952b3c7b2da9f8e4ebe81b87515be2
Author: Vincent Demeester <vincent@sbr.pm>
Date: Fri, 4 Jan 2019 08:38:26 +0100
obs-studio: temporary fix for obs-studio
… waiting for https://github.com/NixOS/nixpkgs/pull/53008 to get merged.
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
2 files changed, 22 insertions(+), 2 deletions(-)
diff --git a/machines/shikoku.nix b/machines/shikoku.nix
@@ -1,5 +1,15 @@
{ pkgs, ... }:
+let
+ my-obs = pkgs.obs-studio.overrideDerivation (oldAttrs: {
+ patches = [
+ (pkgs.fetchpatch {
+ url = "https://patch-diff.githubusercontent.com/raw/obsproject/obs-studio/pull/1557.diff";
+ sha256 = "162fnkxh2wyn6wrrm1kzv7c2mn96kx35vlmk2qwn1nqlifbpsfyq";
+ })
+ ];
+ });
+in
{
imports = [
./base.nix
@@ -33,7 +43,7 @@
home.file."src/github.com/knative/default.nix".source = ../projects/knative/default.nix;
home.packages = with pkgs; [
- obs-studio # screencast
+ my-obs
virtmanager
];
}
diff --git a/machines/wakasu.nix b/machines/wakasu.nix
@@ -1,5 +1,15 @@
{ pkgs, ...}:
+let
+ my-obs = pkgs.obs-studio.overrideDerivation (oldAttrs: {
+ patches = [
+ (pkgs.fetchpatch {
+ url = "https://patch-diff.githubusercontent.com/raw/obsproject/obs-studio/pull/1557.diff";
+ sha256 = "162fnkxh2wyn6wrrm1kzv7c2mn96kx35vlmk2qwn1nqlifbpsfyq";
+ })
+ ];
+ });
+in
{
imports = [
./base.nix
@@ -27,7 +37,7 @@
podman.enable = true;
};
home.packages = with pkgs; [
- obs-studio
+ my-obs
mattermost-desktop
slack
virtmanager