kitchen/nix/trunk/default.nix

21 lines
521 B
Nix
Raw Normal View History

2022-02-28 14:28:21 -05:00
{pkgs ? (import <nixpkgs>) {},
naersk-lib,
}:
2022-02-25 19:10:55 -05:00
with pkgs;
2022-02-28 14:28:21 -05:00
naersk-lib.buildPackage rec {
2022-02-25 19:10:55 -05:00
pname = "trunk";
version = "v0.14.0";
src = fetchFromGitHub {
owner = "thedodd";
repo = pname;
rev = version;
sha256 = "sha256-69MQDIF79pSuaOgZEIqb/ESPQzL7MUiQaJaxPccGxo8=";
};
# Trunk uses the network in it's test which is lame. We'll work around
# by disabling here for now.
doCheck = false;
meta = {
description = "Trunk rust web assembly bundler";
};
}