mirror of
https://github.com/packwiz/packwiz.git
synced 2025-04-19 21:16:30 +02:00
* Add a nix flake * Update flake deps and nix package's version nightly * nix-flake: Update vendorSha256 on each push An extra commit will be pushed only if needed * Move flake.* into root directory Update flake.lock * nix-flake: Support more systems, commit hash as version * Don't automatically update flake.lock
12 lines
175 B
Nix
12 lines
175 B
Nix
{
|
|
sha256,
|
|
pkgs ? import <nixpkgs> {},
|
|
}:
|
|
pkgs.callPackage (import ./.) {
|
|
buildGoModule = pkgs.buildGo118Module;
|
|
vendorSha256 = sha256;
|
|
}
|
|
// {
|
|
outputHash = sha256;
|
|
}
|