aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-10 18:30:40 -0700
committerFuwn <[email protected]>2024-10-10 18:30:40 -0700
commitffb2b9af397cb096dd600b370156c8f27553503e (patch)
treecfe2a946e18de69e1ff096e8daf8ebdcfe1a915e
parentdocs(readme): add nix run binary cache information (diff)
downloadtsutsumi-ffb2b9af397cb096dd600b370156c8f27553503e.tar.xz
tsutsumi-ffb2b9af397cb096dd600b370156c8f27553503e.zip
feat(flake): add wiene
-rw-r--r--README.md1
-rw-r--r--flake.lock35
-rw-r--r--flake.nix14
3 files changed, 49 insertions, 1 deletions
diff --git a/README.md b/README.md
index 15838b1..7a7bac5 100644
--- a/README.md
+++ b/README.md
@@ -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)
diff --git a/flake.lock b/flake.lock
index 424ad7d..ca77e66 100644
--- a/flake.lock
+++ b/flake.lock
@@ -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",
diff --git a/flake.nix b/flake.nix
index f9ea07b..10a993f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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";
+ };
+ };
};
}