mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Merge pull request #230900 from MGlolenstine/fermyon_spin
This commit is contained in:
commit
621c342a08
57
pkgs/development/tools/fermyon-spin/default.nix
Normal file
57
pkgs/development/tools/fermyon-spin/default.nix
Normal file
@ -0,0 +1,57 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchzip
|
||||
, autoPatchelfHook
|
||||
, gcc-unwrapped
|
||||
, zlib
|
||||
}:
|
||||
|
||||
let
|
||||
system = stdenv.hostPlatform.system;
|
||||
|
||||
platform = {
|
||||
x86_64-linux = "linux-amd64";
|
||||
aarch64-linux = "linux-aarch64";
|
||||
x86_64-darwin = "macos-amd64";
|
||||
aarch64-darwin = "macos-aarch64";
|
||||
}.${system} or (throw "Unsupported system: ${system}");
|
||||
|
||||
packageHash = {
|
||||
x86_64-linux = "sha256-Fp1h1X5UFOHLqgaAcXXl3oSioCMVLJLaOURHd3uu8sA=";
|
||||
aarch64-linux = "sha256-F6/h98qZvzImuxPOMYr1cGWBjr1qWGvoYztvZzw2GRg=";
|
||||
x86_64-darwin = "sha256-WegiHPHi9Qw4PPTEB2a9AdIgMlyOzzSpTRdJH43IEjM=";
|
||||
aarch64-darwin = "sha256-BJER3Fp4AItqtLNYh6pH/tNB98H3iTARr3fKyTXGcP8=";
|
||||
}.${system} or (throw "Unsupported system: ${system}");
|
||||
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "fermyon-spin";
|
||||
version = "1.2.1";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/fermyon/spin/releases/download/v${version}/spin-v${version}-${platform}.tar.gz";
|
||||
stripRoot = false;
|
||||
sha256 = packageHash;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoPatchelfHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gcc-unwrapped.lib
|
||||
zlib
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp $src/* $out/bin
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Framework for building, deploying, and running fast, secure, and composable cloud microservices with WebAssembly.";
|
||||
homepage = "https://github.com/fermyon/spin";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ mglolenstine ];
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
@ -7619,6 +7619,8 @@ with pkgs;
|
||||
|
||||
feedgnuplot = callPackage ../tools/graphics/feedgnuplot { };
|
||||
|
||||
fermyon-spin = callPackage ../development/tools/fermyon-spin { };
|
||||
|
||||
fbcat = callPackage ../tools/misc/fbcat { };
|
||||
|
||||
fbv = callPackage ../tools/graphics/fbv { };
|
||||
|
Loading…
Reference in New Issue
Block a user