nidobyte package

This commit is contained in:
Jill 2024-02-23 12:47:40 +01:00
parent 2e8bce0379
commit 906a61cae8
1 changed files with 36 additions and 0 deletions

36
packages/nidobyte.nix Normal file
View File

@ -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
];
}