mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
parent
b9a0cd40ed
commit
fed6d1aaba
33
pkgs/applications/networking/cluster/acorn/default.nix
Normal file
33
pkgs/applications/networking/cluster/acorn/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "acorn";
|
||||
version = "0.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "acorn-io";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-IzjCYVQ9RhuAmgloue421F43ARviaHW7mTkLhLW/VPM=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-z2ya/CgH9AcxHe73Yt9XWbJqH4OrZWt0bRDsna5hYeo=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X github.com/acorn-io/acorn/pkg/version.Tag=v${version}"
|
||||
"-X github.com/acorn-io/acorn/pkg/config.AcornDNSEndpointDefault=https://alpha-dns.acrn.io/v1"
|
||||
];
|
||||
|
||||
# integration tests require network and kubernetes master
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://docs.acorn.io";
|
||||
changelog = "https://github.com/acorn-io/${pname}/releases/tag/v${version}";
|
||||
description = "A simple application deployment framework for Kubernetes";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ urandom ];
|
||||
};
|
||||
}
|
@ -27411,6 +27411,8 @@ with pkgs;
|
||||
requests requests-toolbelt setuptools sqlalchemy fusepy;
|
||||
};
|
||||
|
||||
acorn = callPackage ../applications/networking/cluster/acorn {};
|
||||
|
||||
adobe-reader = pkgsi686Linux.callPackage ../applications/misc/adobe-reader { };
|
||||
|
||||
adl = callPackage ../applications/video/adl { };
|
||||
|
Loading…
Reference in New Issue
Block a user