aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-11-29 15:41:35 +0100
committerAlex Auvolat <alex@adnab.me>2022-11-29 15:41:35 +0100
commitfb4c2ef55aef8191a6ed378d11c4ae1ad9480336 (patch)
treebedd96fa5bfed95e5d87d4b956410b5820ab30f7 /nix
parentda07fee575515f2367fc9f1812dac79b4e64c9b9 (diff)
downloadnixcfg-fb4c2ef55aef8191a6ed378d11c4ae1ad9480336.tar.gz
nixcfg-fb4c2ef55aef8191a6ed378d11c4ae1ad9480336.zip
Remove old nomad-driver-nix
Diffstat (limited to 'nix')
-rw-r--r--nix/nomad-driver-nix.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/nix/nomad-driver-nix.nix b/nix/nomad-driver-nix.nix
deleted file mode 100644
index 9d3638d..0000000
--- a/nix/nomad-driver-nix.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- pkgs ? import <nixpkgs> {}
-}:
-pkgs.buildGoModule rec {
- pname = "nomad-driver-nix";
- version = "0.1.0";
-
- src = pkgs.fetchFromGitHub {
- owner = "input-output-hk";
- repo = "nomad-driver-nix";
- rev = "010b09c680887d0cade86e8ac136c3a04609e04a";
- sha256 = "sha256-hET+b7XhDLSuVQwXLI2V5nYCcdvxQQj9BAG8z4ta6CE=";
- };
-
- vendorSha256 = "sha256-FDJpbNtcFEHnZvWip2pvUHF3BFyfcSohrr/3nk9YS24=";
-
- ldflags = [
- "-X github.com/input-output-hk/nomad-driver-nix/nix.pluginVersion=${version}"
- ];
-
- postInstall = ''
- mv $out/bin/nomad-driver-nix $out/bin/nix-driver
- '';
-
- meta = with pkgs.lib; {
- description = "Nomad driver to run Nix packages / NixOS in systemd-nspawn containers";
- homepage = "https://github.com/input-output-hk/nomad-driver-nix";
- license = licenses.mpl20;
- platforms = platforms.linux;
- };
-}