-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflake.nix
More file actions
47 lines (45 loc) · 1.72 KB
/
Copy pathflake.nix
File metadata and controls
47 lines (45 loc) · 1.72 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Generated by forjar dist (do not edit)
{
description = "Rust-native Infrastructure as Code";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
version = "VERSION";
src = {
"x86_64-linux" = pkgs.fetchurl {
url = "https://github.com/paiml/forjar/releases/download/v${version}/forjar-${version}-x86_64-unknown-linux-gnu.tar.gz";
sha256 = "PLACEHOLDER_CHECKSUM";
};
"aarch64-linux" = pkgs.fetchurl {
url = "https://github.com/paiml/forjar/releases/download/v${version}/forjar-${version}-aarch64-unknown-linux-gnu.tar.gz";
sha256 = "PLACEHOLDER_CHECKSUM";
};
"x86_64-darwin" = pkgs.fetchurl {
url = "https://github.com/paiml/forjar/releases/download/v${version}/forjar-${version}-x86_64-apple-darwin.tar.gz";
sha256 = "PLACEHOLDER_CHECKSUM";
};
"aarch64-darwin" = pkgs.fetchurl {
url = "https://github.com/paiml/forjar/releases/download/v${version}/forjar-${version}-aarch64-apple-darwin.tar.gz";
sha256 = "PLACEHOLDER_CHECKSUM";
};
}.${system} or (throw "unsupported system: ${system}");
in {
packages.default = pkgs.stdenv.mkDerivation {
pname = "forjar";
inherit version;
inherit src;
sourceRoot = ".";
unpackPhase = "tar xzf $src";
installPhase = ''
mkdir -p $out/bin
cp forjar $out/bin/
'';
};
}
);
}