Update dependencies
This commit is contained in:
parent
0ef60c7b77
commit
934932998c
3 changed files with 39 additions and 7 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -42,11 +42,11 @@
|
||||||
},
|
},
|
||||||
"emacs-overlay": {
|
"emacs-overlay": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1634289381,
|
"lastModified": 1634349588,
|
||||||
"narHash": "sha256-497CIfv2rayC5uafav42cGhkhtIMLWBsfXS6EtLGRcI=",
|
"narHash": "sha256-XUWjr6REnzPnpPtdf+QsLHwBI5R+qhvCWRAzOVDmyto=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "emacs-overlay",
|
"repo": "emacs-overlay",
|
||||||
"rev": "de536fa76c469b25e377674028641f6fe03b602d",
|
"rev": "a7442f550bfedfccb1822fd8ceaf6e44955f43db",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -30,10 +30,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
android.enable = true;
|
android.enable = true;
|
||||||
};
|
};
|
||||||
games = {
|
games.enable = true;
|
||||||
enable = true;
|
|
||||||
steam.enable = false;
|
|
||||||
};
|
|
||||||
graphical.enable = true;
|
graphical.enable = true;
|
||||||
programs = {
|
programs = {
|
||||||
calibre.enable = false;
|
calibre.enable = false;
|
||||||
|
|
35
patches/141796.patch
Normal file
35
patches/141796.patch
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
From f9c9ec120eb7bdd664bb9f29323a442637e81c7b Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= <fabianhjr@protonmail.com>
|
||||||
|
Date: Fri, 15 Oct 2021 14:34:17 -0500
|
||||||
|
Subject: [PATCH] tracker: patch failing test due to float comparison
|
||||||
|
|
||||||
|
---
|
||||||
|
pkgs/development/libraries/tracker/default.nix | 8 ++++++++
|
||||||
|
1 file changed, 8 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/pkgs/development/libraries/tracker/default.nix b/pkgs/development/libraries/tracker/default.nix
|
||||||
|
index 39ac21b7ad6c..fc0ba54cbe7e 100644
|
||||||
|
--- a/pkgs/development/libraries/tracker/default.nix
|
||||||
|
+++ b/pkgs/development/libraries/tracker/default.nix
|
||||||
|
@@ -1,6 +1,7 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchurl
|
||||||
|
+, fetchpatch
|
||||||
|
, gettext
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
@@ -44,6 +45,13 @@ stdenv.mkDerivation rec {
|
||||||
|
src = ./fix-paths.patch;
|
||||||
|
inherit asciidoc;
|
||||||
|
})
|
||||||
|
+ ] ++ lib.optionals (stdenv.hostPlatform.isi686) [
|
||||||
|
+ # Upstream: https://gitlab.gnome.org/GNOME/tracker/-/issues/332
|
||||||
|
+ (fetchpatch {
|
||||||
|
+ name = "i686-test.patch";
|
||||||
|
+ url = "https://gitlab.gnome.org/GNOME/tracker/-/commit/af707181a2c492a794daec7ce3f3062d67ffd9dc.patch";
|
||||||
|
+ sha256 = "sha256-KOdkTy79w3oiQILrPG00UVrv+VBjAk4Y868I8jtifqk=";
|
||||||
|
+ })
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
Loading…
Add table
Add a link
Reference in a new issue