diff options
| author | Fuwn <[email protected]> | 2024-10-09 07:55:40 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-09 07:55:40 -0700 |
| commit | f77b8259ff4c1af908bb21714820446bfa214f36 (patch) | |
| tree | 99b0f18b22f0813d9604efe71ac415d862a22dfa | |
| parent | docs(readme): add binary cache instructions (diff) | |
| download | tsutsumi-f77b8259ff4c1af908bb21714820446bfa214f36.tar.xz tsutsumi-f77b8259ff4c1af908bb21714820446bfa214f36.zip | |
feat(pkgs): add fixed lilipod package
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | flake.nix | 1 | ||||
| -rw-r--r-- | pkgs/lilipod.nix | 27 |
3 files changed, 29 insertions, 0 deletions
@@ -34,6 +34,7 @@ running `nix run github:Fuwn/tsutsumi#rui`. (or any other package in place of - [Mayu](https://github.com/Fuwn/mayu) - Moe-Counter compatible website hit counter written in Gleam - [html2md](https://github.com/suntong/html2md) - Command-line HTML to Markdown converter +- [Lilipod](https://github.com/89luca89/lilipod) - Simple container manager - [Private Internet Access](https://www.privateinternetaccess.com/) (`private-internet-access`) - Private Internet Access VPN binaries and configuration files @@ -117,6 +117,7 @@ maple = maple.packages.${system}.default; mayu = mayu.packages.${system}.default; html2md = pkgs.callPackage ./pkgs/html2md.nix { }; + lilipod = pkgs.callPackage ./pkgs/lilipod.nix { }; private-internet-access = pkgs.callPackage ./pkgs/private-internet-access.nix { }; rui = rui.packages.${system}.default; suzuri = pkgs.callPackage ./pkgs/suzuri.nix { inherit (self.packages.${system}) html2md; }; diff --git a/pkgs/lilipod.nix b/pkgs/lilipod.nix new file mode 100644 index 0000000..7de731d --- /dev/null +++ b/pkgs/lilipod.nix @@ -0,0 +1,27 @@ +{ + fetchurl, + lib, + buildGoModule, + fetchFromGitHub, + installShellFiles, + stdenv, + shadow, + util-linux, +}: +import + (fetchurl { + # <https://github.com/NixOS/nixpkgs/pull/347046> + url = "https://github.com/NixOS/nixpkgs/raw/f492564639d6f63ecbe213fe160c30e355b4fd12/pkgs/by-name/li/lilipod/package.nix"; + hash = "sha256-ojsiTyvzhDCao5USngg05e2ZEgyn8MyL/vMrrFUlEMw="; + }) + { + inherit + lib + buildGoModule + fetchFromGitHub + installShellFiles + stdenv + shadow + util-linux + ; + } |