about summary refs log tree commit diff
path: root/third_party/josh/default.nix
blob: 14e07617bea06390b81234895ba9f3bb82100268 (plain) (blame)
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
# https://github.com/esrlabs/josh
{ depot, pkgs, ... }:

let
  src = pkgs.fetchFromGitHub {
    owner = "esrlabs";
    repo = "josh";
    rev = "69dc986e506ba5631c8bbf52835da076a18ec8dc";
    hash = "sha256:0ybc6ivjkm7bchaszs9lhbl1gbjnyhwq7a3vw6jml3ama84l52lb";
  };
in
depot.third_party.naersk.buildPackage {
  inherit src;

  buildInputs = with pkgs; [
    libgit2
    openssl
    pkgconfig
  ];

  cargoBuildOptions = x: x ++ [
    "-p"
    "josh"
    "-p"
    "josh-proxy"
    "-p"
    "josh-ui"
  ];
}