-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'staging-next' (PR #62209)
- Loading branch information
Showing
50 changed files
with
284 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 0 additions & 34 deletions
34
pkgs/applications/virtualization/qemu/fix-hda-recording.patch
This file was deleted.
Oops, something went wrong.
19 changes: 17 additions & 2 deletions
19
pkgs/applications/virtualization/qemu/no-etc-install.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,25 @@ | ||
From 98b3e5993bbdb0013b6cc1814e0ad9555290c3af Mon Sep 17 00:00:00 2001 | ||
From: Will Dietz <w@wdtz.org> | ||
Date: Tue, 23 Apr 2019 21:31:45 -0500 | ||
Subject: [PATCH] no install localstatedir | ||
|
||
--- | ||
Makefile | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/Makefile b/Makefile | ||
index 04a0d45050..5dc82d0eb7 100644 | ||
--- a/Makefile | ||
+++ b/Makefile | ||
@@ -597,7 +597,7 @@ | ||
@@ -786,7 +786,7 @@ endif | ||
|
||
ICON_SIZES=16x16 24x24 32x32 48x48 64x64 128x128 256x256 512x512 | ||
|
||
-install: all $(if $(BUILD_DOCS),install-doc) install-datadir install-localstatedir | ||
+install: all $(if $(BUILD_DOCS),install-doc) install-datadir | ||
ifneq ($(TOOLS),) | ||
$(call install-prog,$(subst qemu-ga,qemu-ga$(EXESUF),$(TOOLS)),$(DESTDIR)$(bindir)) | ||
$(call install-prog,$(subst qemu-ga,qemu-ga$(EXESUF),$(TOOLS)),$(DESTDIR)$(bindir)) | ||
endif | ||
-- | ||
2.21.GIT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ lib, fetchFromGitHub }: | ||
|
||
let | ||
pname = "publicsuffix-list"; | ||
version = "2019-05-24"; | ||
in fetchFromGitHub rec { | ||
name = "${pname}-${version}"; | ||
owner = "publicsuffix"; | ||
repo = "list"; | ||
rev = "a1db0e898956e126de65be1a5e977fbbbbeebe33"; | ||
sha256 = "092153w2jr7nx28p9wc9k6b5azi9c39ghnqfnfiwfzv1j8jm3znq"; | ||
|
||
postFetch = '' | ||
tar xf $downloadedFile --strip=1 | ||
install -Dm0444 public_suffix_list.dat tests/test_psl.txt -t $out/share/publicsuffix | ||
''; | ||
|
||
meta = with lib; { | ||
homepage = "https://publicsuffix.org/"; | ||
description = "Cross-vendor public domain suffix database"; | ||
platforms = platforms.all; | ||
license = licenses.mpl20; | ||
maintainers = [ maintainers.c0bw3b ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import ./base.nix { | ||
version = "64.2"; | ||
sha256 = "0v0xsf14xwlj125y9fd8lrhsaych4d8liv8gr746zng6g225szb2"; | ||
} |
Oops, something went wrong.