aboutsummaryrefslogtreecommitdiff
path: root/nix/nomad-driver-nix2.nix
blob: 1dcab5733fa268eea838bf85579aa4ef9d17885a (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
{
  pkgs ? import <nixpkgs> {}
}:
pkgs.buildGoModule rec {
  pname = "nomad-driver-nix2";
  version = "0.1.0";

  src = builtins.fetchGit {
    url = "https://git.deuxfleurs.fr/Deuxfleurs/nomad-driver-nix2";
    rev = "8b17eeac11b009e8ab7715aac0b56fbea555df59";
  };

  vendorSha256 = "sha256-EQdTxVOBRYQjg7kAB+pFJYcNwk0zlsjjJxM+EO/cK84=";

  postInstall = ''
    mv $out/bin/nomad-driver-nix2 $out/bin/nix2
  '';

  meta = with pkgs.lib; {
    description = "Nomad driver to run Nix jobs";
    homepage = "https://git.deuxfleurs.fr/Deuxfleurs/nomad-driver-nix2";
    license = licenses.mpl20;
    platforms = platforms.linux;
  };
}