mirror of
https://github.com/nostrlabs-io/notepush.git
synced 2025-06-14 03:04:08 +00:00
11 lines
135 B
Nix
11 lines
135 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
rustup
|
|
openssl
|
|
pkg-config
|
|
websocat
|
|
];
|
|
}
|