mirror of
https://github.com/soywod/himalaya.git
synced 2025-04-18 23:33:38 +00:00
parent
5eeda248fd
commit
3ceef291a1
3 changed files with 21 additions and 15 deletions
|
@ -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
|
||||
|
|
17
flake.lock
generated
17
flake.lock
generated
|
@ -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": {
|
||||
|
|
14
flake.nix
14
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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue