lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

container-linux-config-transpiler: init at 0.4.1 (#27486)

authored by

Elijah Caine and committed by
Jörg Thalheim
1fef42dd 699f8e2f

+38
+1
lib/maintainers.nix
··· 172 172 ekleog = "Leo Gaspard <leo@gaspard.io>"; 173 173 elasticdog = "Aaron Bull Schaefer <aaron@elasticdog.com>"; 174 174 eleanor = "Dejan Lukan <dejan@proteansec.com>"; 175 + elijahcaine = "Elijah Caine <elijahcainemv@gmail.com>"; 175 176 elitak = "Eric Litak <elitak@gmail.com>"; 176 177 ellis = "Ellis Whitehead <nixos@ellisw.net>"; 177 178 eperuffo = "Emanuele Peruffo <info@emanueleperuffo.com>";
+35
pkgs/development/tools/container-linux-config-transpiler/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, buildGoPackage }: 2 + 3 + with lib; 4 + 5 + buildGoPackage rec { 6 + name = "ct-${version}"; 7 + version = "0.4.1"; 8 + 9 + goPackagePath = "github.com/coreos/container-linux-config-transpiler"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "coreos"; 13 + repo = "container-linux-config-transpiler"; 14 + rev = "v${version}"; 15 + sha256="1017xkinja30jcam8p1x2d9q4vkgkfn7gvkad004jkbbmd2216sa"; 16 + }; 17 + 18 + buildFlagsArray = '' 19 + -ldflags=-X ${goPackagePath}/internal/version.Raw=v${version} 20 + ''; 21 + 22 + postInstall = '' 23 + mv $bin/bin/{internal,ct} 24 + rm $bin/bin/tools 25 + ''; 26 + 27 + meta = { 28 + description = "Convert a Container Linux Config into Ignition"; 29 + license = licenses.asl20; 30 + homepage = https://github.com/coreos/container-linux-config-transpiler; 31 + maintainers = with maintainers; [elijahcaine]; 32 + platforms = with platforms; unix; 33 + }; 34 + } 35 +
+2
pkgs/top-level/all-packages.nix
··· 535 535 536 536 bonnie = callPackage ../tools/filesystems/bonnie { }; 537 537 538 + container-linux-config-transpiler = callPackage ../development/tools/container-linux-config-transpiler { }; 539 + 538 540 djmount = callPackage ../tools/filesystems/djmount { }; 539 541 540 542 dgsh = callPackage ../shells/dgsh { };