diff --git a/packages/nidobyte.nix b/packages/nidobyte.nix new file mode 100644 index 0000000..8f756fa --- /dev/null +++ b/packages/nidobyte.nix @@ -0,0 +1,36 @@ +{ stdenv, lib, fetchpijul +, pijul +, rustc +, cargo +, rustfmt +, postgresql +, sqlx-cli +, libiconv +, xxHash +, zstd +, ... }: + +stdenv.mkDerivation rec { + pname = "nidobyte"; + + src = fetchpijul { + url = "https://nest.pijul.com/zj/nidobyte"; + hash = "YZAHAQRQHK24QY2H3AXKCPPDIE2F53H35C5CNYUSXRDSNCWOUJVQC"; + }; + + nativeBuildInputs = [ + pijul + + rustc + cargo + rustfmt + + postgresql + sqlx-cli + + libiconv + + xxHash + zstd + ]; +}