summaryrefslogtreecommitdiffstats
path: root/shell.nix
blob: ed1760b88bd3c92dc01cf3534f1a1e911728f3b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# nix requires using nix-shell since native-tls requires pkg-config to
# configure openssl
#
# See also:
#    https://nixos.wiki/wiki/C#pkg-config
#    https://github.com/NixOS/nixpkgs/issues/64530
with import <nixpkgs> {};
stdenv.mkDerivation {
  name = "mastodon-async";
  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ openssl ];
}