1
0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-11-22 08:01:56 +01:00

nidobyte package

This commit is contained in:
Jill "oatmealine" Monoids 2024-02-23 12:47:40 +01:00
parent 2e8bce0379
commit 906a61cae8

36
packages/nidobyte.nix Normal 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
];
}