forked from Deuxfleurs/nixcfg
Use nix driver moved to Deuxfleurs namespace
This commit is contained in:
parent
14e3e6deff
commit
da07fee575
1 changed files with 3 additions and 7 deletions
|
@ -6,23 +6,19 @@ pkgs.buildGoModule rec {
|
||||||
version = "0.1.0";
|
version = "0.1.0";
|
||||||
|
|
||||||
src = builtins.fetchGit {
|
src = builtins.fetchGit {
|
||||||
url = "https://git.deuxfleurs.fr/lx/nomad-driver-nix2";
|
url = "https://git.deuxfleurs.fr/Deuxfleurs/nomad-driver-nix2";
|
||||||
rev = "d13a77952cd6404fa535b3863fca0a5bf8501af5";
|
rev = "8b17eeac11b009e8ab7715aac0b56fbea555df59";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-EQdTxVOBRYQjg7kAB+pFJYcNwk0zlsjjJxM+EO/cK84=";
|
vendorSha256 = "sha256-EQdTxVOBRYQjg7kAB+pFJYcNwk0zlsjjJxM+EO/cK84=";
|
||||||
|
|
||||||
ldflags = [
|
|
||||||
"-X git.deuxfleurs.fr/lx/nomad-driver-nix2/nix2.pluginVersion=${version}"
|
|
||||||
];
|
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mv $out/bin/nomad-driver-nix2 $out/bin/nix2
|
mv $out/bin/nomad-driver-nix2 $out/bin/nix2
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with pkgs.lib; {
|
meta = with pkgs.lib; {
|
||||||
description = "Nomad driver to run Nix jobs";
|
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;
|
license = licenses.mpl20;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue