Update dependencies

This commit is contained in:
Charlotte Van Petegem 2022-11-24 17:25:36 +01:00
parent 28d831657a
commit 3bb4ce6320
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 9 additions and 34 deletions

18
flake.lock generated
View file

@ -19,11 +19,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1669211485, "lastModified": 1669305067,
"narHash": "sha256-wtDX1UVQGM/tfuB5WNoLfWq75uJKOVfTxT7eWf/j4tU=", "narHash": "sha256-EcqJEIhrKAXbuwAEvoVqlAzcHbHep4DzziMOWQM4Hcw=",
"owner": "accentor", "owner": "accentor",
"repo": "flake", "repo": "flake",
"rev": "d65f5766f1107677379d953e9eb6c9f9c9f93dc9", "rev": "22434c29070eba82759755957ebe02dace891ef5",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -231,11 +231,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1669140675, "lastModified": 1669230746,
"narHash": "sha256-npzfyfLECsJWgzK/M4gWhykP2DNAJTYjgY2BWkz/oEQ=", "narHash": "sha256-+rU3DixJnygpJsGhhp6OvViruJux4TaiCz4IO+DdtZU=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2788904d26dda6cfa1921c5abb7a2466ffe3cb8c", "rev": "42337aad353c5efff4382d7bf99deda491459845",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -306,11 +306,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1669211170, "lastModified": 1669304320,
"narHash": "sha256-yL3+4FbIgDfa2Lyyr2vbtUPG6jBA968YhsiUvXXTf2k=", "narHash": "sha256-9i5u5IDZSYYyadZ/g1q14YB0EYVTenUKZcjCQuIgKpU=",
"owner": "chvp", "owner": "chvp",
"repo": "tetris", "repo": "tetris",
"rev": "54e3ef66222f591c9ddbb74e644e2bdfc4f1c1d0", "rev": "4c0820f7874c99626fc652e91066e37b4aecbd0c",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,25 +0,0 @@
From f6b4b52a17e47707e9ab6b252c50b663781f34c1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
Date: Tue, 22 Nov 2022 16:19:35 +0100
Subject: [PATCH] autojump: fixup python shebang after cross fix
we need python also in buildInputs for the shebang to get fixed properly
---
pkgs/tools/misc/autojump/default.nix | 2 ++
1 file changed, 2 insertions(+)
diff --git a/pkgs/tools/misc/autojump/default.nix b/pkgs/tools/misc/autojump/default.nix
index 844e3ba99ea9cf..424497ee182b76 100644
--- a/pkgs/tools/misc/autojump/default.nix
+++ b/pkgs/tools/misc/autojump/default.nix
@@ -11,8 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "1rgpsh70manr2dydna9da4x7p8ahii7dgdgwir5fka340n1wrcws";
};
+ buildInputs = [ python3 ];
nativeBuildInputs = [ python3 ];
dontBuild = true;
+ strictDeps = true;
installPhase = ''
python ./install.py -d "$out" -p "" -z "$out/share/zsh/site-functions/"