16 lines
216 B
Nix
16 lines
216 B
Nix
with import <nixpkgs> {};
|
|
stdenv.mkDerivation {
|
|
name = "env";
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
postgresql_14
|
|
rustfmt
|
|
cargo
|
|
djlint
|
|
];
|
|
|
|
buildInputs = [
|
|
cryptsetup
|
|
protobuf
|
|
];
|
|
}
|