Merge pull request #98880 from mrVanDalo/feature/terranix
terranix: init at 2.3.0
This commit is contained in:
commit
2f6fba9f6d
29
pkgs/applications/networking/cluster/terranix/default.nix
Normal file
29
pkgs/applications/networking/cluster/terranix/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchFromGitHub, ... }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
pname = "terranix";
|
||||
version = "2.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mrVanDalo";
|
||||
repo = "terranix";
|
||||
rev = version;
|
||||
sha256 = "030067h3gjc02llaa7rx5iml0ikvw6szadm0nrss2sqzshsfimm4";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
mv bin core modules lib $out/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A NixOS like terraform-json generator";
|
||||
homepage = "https://terranix.org";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ mrVanDalo ];
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -27614,6 +27614,8 @@ in
|
||||
|
||||
terragrunt = callPackage ../applications/networking/cluster/terragrunt {};
|
||||
|
||||
terranix = callPackage ../applications/networking/cluster/terranix {};
|
||||
|
||||
tilt = callPackage ../applications/networking/cluster/tilt {};
|
||||
|
||||
timeular = callPackage ../applications/office/timeular {};
|
||||
|
Loading…
Reference in New Issue
Block a user