Skip to content

Commit

Permalink
fix: permission denied when using install.sh
Browse files Browse the repository at this point in the history
Refs: #515
  • Loading branch information
soywod committed Jan 9, 2025
1 parent 5eeda24 commit 3ceef29
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 15 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
17 changes: 9 additions & 8 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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;
};
}

0 comments on commit 3ceef29

Please sign in to comment.