From 3ceef291a19c5901d2087bf4cba89947c3db2dcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Thu, 9 Jan 2025 15:23:24 +0100 Subject: [PATCH] fix: permission denied when using install.sh Refs: #515 --- CHANGELOG.md | 5 +++++ flake.lock | 17 +++++++++-------- flake.nix | 14 +++++++------- 3 files changed, 21 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7d0d888..89583a84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- Fixed permissions issues when using `install.sh`. [#515] + ## [1.0.0] - 2024-12-09 The Himalaya CLI scope has changed. It does not include anymore the synchronization, nor the envelope watching. These scopes have moved to dedicated projects: @@ -936,4 +940,5 @@ Few major concepts changed: [#492]: https://github.com/pimalaya/himalaya/issues/492 [#496]: https://github.com/pimalaya/himalaya/issues/496 [#508]: https://github.com/pimalaya/himalaya/issues/508 +[#515]: https://github.com/pimalaya/himalaya/issues/515 [core#10]: https://github.com/pimalaya/core/issues/10 diff --git a/flake.lock b/flake.lock index 24ae2f18..85f9f3b8 100644 --- a/flake.lock +++ b/flake.lock @@ -23,15 +23,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1732539489, - "narHash": "sha256-EPstM4aUuClDkFdoyno1CSRZIfGdCfZKw/XzMlQB0NY=", - "owner": "soywod", + "lastModified": 1736344531, + "narHash": "sha256-8YVQ9ZbSfuUk2bUf2KRj60NRraLPKPS0Q4QFTbc+c2c=", + "owner": "nixos", "repo": "nixpkgs", - "rev": "87b010196489f96e4acdcc804ed3d096476e46ad", + "rev": "bffc22eb12172e6db3c5dde9e3e5628f8e3e7912", "type": "github" }, "original": { - "owner": "soywod", + "owner": "nixos", + "ref": "nixos-unstable", "repo": "nixpkgs", "type": "github" } @@ -39,11 +40,11 @@ "pimalaya": { "flake": false, "locked": { - "lastModified": 1732869386, - "narHash": "sha256-83tDRVfSBVZgIp6WOb6r/T6cHfP7lNsK1MUTdkGMi14=", + "lastModified": 1736432039, + "narHash": "sha256-wIikmpI8gpw4fQaAe7BaB40oeiIqgIW6jsKUFZPj1nE=", "owner": "pimalaya", "repo": "nix", - "rev": "be23e0deeb014c6be5232322b892c9bee25dee77", + "rev": "e793469d415afa59fa8a41b275ea7b8f82d1b1e7", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 3fbc17ca..fd6bbeac 100644 --- a/flake.nix +++ b/flake.nix @@ -2,9 +2,7 @@ description = "CLI to manage emails"; inputs = { - # TODO: https://github.com/NixOS/nixpkgs/pull/358989 - # nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; - nixpkgs.url = "github:soywod/nixpkgs"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; fenix = { # TODO: https://github.com/nix-community/fenix/pull/145 # url = "github:nix-community/fenix"; @@ -17,8 +15,10 @@ }; }; - outputs = inputs: (import inputs.pimalaya).mkFlakeOutputs inputs { - shell = ./shell.nix; - default = ./default.nix; - }; + outputs = + inputs: + (import inputs.pimalaya).mkFlakeOutputs inputs { + shell = ./shell.nix; + default = ./default.nix; + }; }