aboutsummaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-09 07:55:40 -0700
committerFuwn <[email protected]>2024-10-09 07:55:40 -0700
commitf77b8259ff4c1af908bb21714820446bfa214f36 (patch)
tree99b0f18b22f0813d9604efe71ac415d862a22dfa /pkgs
parentdocs(readme): add binary cache instructions (diff)
downloadtsutsumi-f77b8259ff4c1af908bb21714820446bfa214f36.tar.xz
tsutsumi-f77b8259ff4c1af908bb21714820446bfa214f36.zip
feat(pkgs): add fixed lilipod package
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/lilipod.nix27
1 files changed, 27 insertions, 0 deletions
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
+ ;
+ }