File: shell.nix

package info (click to toggle)
glome 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 716 kB
  • sloc: ansic: 2,468; python: 508; sh: 149; makefile: 20
file content (26 lines) | stat: -rw-r--r-- 485 bytes parent folder | download | duplicates (2)
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
# run `nix-shell` in the same directory as this file
with import <nixpkgs> { };
stdenv.mkDerivation {
  name = "glome";
  buildInputs = [
    # Build dependencies
    # Compiler conforming to C99 (e.g. gcc, clang)
    meson # >=0.49.2
    ninja
    pkg-config

    openssl # >=1.1.1
    glib # >=2.0   (glome-login and tests)
    linux-pam # (PAM module)

    # for `./go/`
    go

    # Test dependencies
    libpam-wrapper

    # Development tools
    clang-tools
    cpplint
  ];
}