Use nix driver moved to Deuxfleurs namespace

This commit is contained in:
Alex 2022-11-29 14:46:42 +01:00
parent 14e3e6deff
commit da07fee575
Signed by: lx
GPG Key ID: 0E496D15096376BE
1 changed files with 3 additions and 7 deletions

View File

@ -6,23 +6,19 @@ pkgs.buildGoModule rec {
version = "0.1.0";
src = builtins.fetchGit {
url = "https://git.deuxfleurs.fr/lx/nomad-driver-nix2";
rev = "d13a77952cd6404fa535b3863fca0a5bf8501af5";
url = "https://git.deuxfleurs.fr/Deuxfleurs/nomad-driver-nix2";
rev = "8b17eeac11b009e8ab7715aac0b56fbea555df59";
};
vendorSha256 = "sha256-EQdTxVOBRYQjg7kAB+pFJYcNwk0zlsjjJxM+EO/cK84=";
ldflags = [
"-X git.deuxfleurs.fr/lx/nomad-driver-nix2/nix2.pluginVersion=${version}"
];
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/lx/nomad-driver-nix2";
homepage = "https://git.deuxfleurs.fr/Deuxfleurs/nomad-driver-nix2";
license = licenses.mpl20;
platforms = platforms.linux;
};