diff options
| author | Fuwn <[email protected]> | 2024-10-10 18:30:40 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-10 18:30:40 -0700 |
| commit | ffb2b9af397cb096dd600b370156c8f27553503e (patch) | |
| tree | cfe2a946e18de69e1ff096e8daf8ebdcfe1a915e | |
| parent | docs(readme): add nix run binary cache information (diff) | |
| download | tsutsumi-ffb2b9af397cb096dd600b370156c8f27553503e.tar.xz tsutsumi-ffb2b9af397cb096dd600b370156c8f27553503e.zip | |
feat(flake): add wiene
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | flake.lock | 35 | ||||
| -rw-r--r-- | flake.nix | 14 |
3 files changed, 49 insertions, 1 deletions
@@ -46,6 +46,7 @@ running `nix run github:Fuwn/tsutsumi#rui`. (or any other package in place of people that want to finish tasks, not organize them - [Thorium](https://thorium.rocks/) (`thorium`) - Fast and secure browser that uses modern CPU flags and LLVM optimizations +- [Wiene](https://github.com/Fuwn/wiene) (`wiene`) - Nix Dependency Manager - [Yaak](https://yaak.app/) (`yaak`) - API client for modern developers - [Zen Browser](https://zen-browser.app/) (`zen-browser-bin`) - Firefox based browser with a focus on privacy and customisation (alpha release) @@ -239,7 +239,8 @@ "nixpkgs": "nixpkgs", "pre-commit-hooks": "pre-commit-hooks", "rui": "rui", - "systems": "systems" + "systems": "systems", + "wiene": "wiene" } }, "rui": { @@ -288,6 +289,38 @@ "repo": "default", "type": "github" } + }, + "wiene": { + "inputs": { + "flake-compat": [ + "flake-compat" + ], + "flake-utils": [ + "flake-utils" + ], + "nixpkgs": [ + "nixpkgs" + ], + "pre-commit-hooks": [ + "pre-commit-hooks" + ], + "systems": [ + "systems" + ] + }, + "locked": { + "lastModified": 1728609919, + "narHash": "sha256-yx2NGX7fVKfP2plWdAe1ZyEVBabqrGwp02qoHZXsCIo=", + "owner": "Fuwn", + "repo": "wiene", + "rev": "a00423ae76a0ff235c3dc54edebcbbda11bfbb1e", + "type": "github" + }, + "original": { + "owner": "Fuwn", + "repo": "wiene", + "type": "github" + } } }, "root": "root", @@ -19,6 +19,7 @@ pre-commit-hooks, rui, self, + wiene, ... }: flake-utils.lib.eachDefaultSystem ( @@ -66,6 +67,7 @@ swaddle = pkgs.callPackage ./pkgs/swaddle.nix { }; t = pkgs.callPackage ./pkgs/t.nix { }; thorium = pkgs.callPackage ./pkgs/thorium.nix { }; + wiene = wiene.packages.${system}.default; yaak = pkgs.callPackage ./pkgs/yaak.nix { }; zen-browser-bin = pkgs.callPackage ./pkgs/zen-browser-bin.nix { inherit pkgs self; }; @@ -159,5 +161,17 @@ nixpkgs.follows = "nixpkgs"; }; }; + + wiene = { + url = "github:Fuwn/wiene"; + + inputs = { + flake-compat.follows = "flake-compat"; + flake-utils.follows = "flake-utils"; + nixpkgs.follows = "nixpkgs"; + pre-commit-hooks.follows = "pre-commit-hooks"; + systems.follows = "systems"; + }; + }; }; } |