-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
37 lines (35 loc) · 1.27 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
goo.url = "github:doma-engineering/goo-1.14?ref=v1.14";
};
outputs = {self, nixpkgs, goo}:
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
defaultPackage.x86_64-linux = pkgs.hello;
devShell.x86_64-linux =
pkgs.mkShell {
buildInputs = [
pkgs.erlangR24
goo.defaultPackage.x86_64-linux
pkgs.libsodium
pkgs.inotify-tools
pkgs.postgresql
pkgs.openssl
# Helpers
pkgs.httpie
pkgs.jq
pkgs.yq
pkgs.dig
# Stuff that has to be externally configured
pkgs.gnupg
pkgs.darcs
## Stuff that isn't yet implemented
# domaPakages.passveil
## Stuff that doesn't work
# pkgs.yggdrasil
];
# LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ pkgs.libsodium ];
};
};
}