-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
102 changed files
with
3,782 additions
and
3,121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4932,6 +4932,12 @@ | |
fingerprint = "B9D5 0EDF E95E ECD0 C135 00A9 56E9 3C2F B6B0 8BDB"; | ||
}]; | ||
}; | ||
gpl = { | ||
email = "[email protected]"; | ||
github = "gpl"; | ||
githubId = 39648069; | ||
name = "isogram"; | ||
}; | ||
gpyh = { | ||
email = "[email protected]"; | ||
github = "yacinehmito"; | ||
|
@@ -13862,6 +13868,15 @@ | |
githubId = 245573; | ||
name = "Dmitry Kalinkin"; | ||
}; | ||
victormignot = { | ||
email = "[email protected]"; | ||
github = "victormignot"; | ||
githubId = 58660971; | ||
name = "Victor Mignot"; | ||
keys = [{ | ||
fingerprint = "CA5D F91A D672 683A 1F65 BBC9 0317 096D 20E0 067B"; | ||
}]; | ||
}; | ||
vidbina = { | ||
email = "[email protected]"; | ||
github = "vidbina"; | ||
|
@@ -15247,4 +15262,10 @@ | |
fingerprint = "7B9E E848 D074 AE03 7A0C 651A 8ED4 DEF7 375A 30C8"; | ||
}]; | ||
}; | ||
rb = { | ||
email = "[email protected]"; | ||
github = "nitrocode"; | ||
githubId = 7775707; | ||
name = "RB"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ lib, buildGoModule, fetchFromGitHub }: | ||
|
||
buildGoModule rec { | ||
pname = "atmos"; | ||
version = "1.4.28"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "cloudposse"; | ||
repo = pname; | ||
rev = "v${version}"; | ||
sha256 = "sha256-AqW//+x1tKzm5dJirXCLFuDBTk3dHHw7c6vwsVsI37U"; | ||
}; | ||
|
||
vendorSha256 = "sha256-bepv8Ns8vcpLpmO7fsRgGijB9B6kQ5HhxUhIuEpGtOY="; | ||
|
||
ldflags = [ "-s" "-w" "-X github.com/cloudposse/atmos/cmd.Version=v${version}" ]; | ||
|
||
preCheck = '' | ||
# Remove tests that depend on a network connection. | ||
rm -f pkg/vender/component_vendor_test.go | ||
''; | ||
|
||
doCheck = true; | ||
|
||
doInstallCheck = true; | ||
installCheckPhase = '' | ||
runHook preInstallCheck | ||
$out/bin/atmos version | grep "v${version}" | ||
runHook postInstallCheck | ||
''; | ||
|
||
meta = with lib; { | ||
homepage = "https://atmos.tools"; | ||
changelog = "https://github.com/cloudposse/atmos/releases/tag/v${version}"; | ||
description = "Universal Tool for DevOps and Cloud Automation (works with terraform, helm, helmfile, etc)"; | ||
license = licenses.asl20; | ||
maintainers = with maintainers; [ rb ]; | ||
}; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ lib, stdenv, fetchurl }: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "systemc"; | ||
version = "2.3.3"; | ||
|
||
src = fetchurl { | ||
url = "https://www.accellera.org/images/downloads/standards/systemc/${pname}-${version}.tar.gz"; | ||
sha256 = "5781b9a351e5afedabc37d145e5f7edec08f3fd5de00ffeb8fa1f3086b1f7b3f"; | ||
}; | ||
|
||
meta = with lib; { | ||
description = "The language for System-level design, modeling and verification"; | ||
homepage = "https://systemc.org/"; | ||
license = licenses.asl20; | ||
maintainers = with maintainers; [ victormignot ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.