mirror of
https://github.com/zaphar/kitchen.git
synced 2025-07-22 19:40:14 -04:00
21 lines
521 B
Nix
21 lines
521 B
Nix
{pkgs ? (import <nixpkgs>) {},
|
|
naersk-lib,
|
|
}:
|
|
with pkgs;
|
|
naersk-lib.buildPackage rec {
|
|
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";
|
|
};
|
|
} |