*: add config
This commit is contained in:
commit
80c42c7e45
22 changed files with 3229 additions and 0 deletions
43
derivations/dev/rkt.nix
Normal file
43
derivations/dev/rkt.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
pkgs ? import /home/steveej/src/github/NixOS/nixpkgs-systemsource {},
|
||||
mkGoEnv ? import ./go.nix,
|
||||
}:
|
||||
let
|
||||
rktBasebuildInputs = with pkgs; [
|
||||
autoconf
|
||||
automake
|
||||
autogen
|
||||
gnupg1
|
||||
squashfsTools
|
||||
cpio
|
||||
tree
|
||||
intltool
|
||||
libtool
|
||||
pkgconfig
|
||||
libgcrypt
|
||||
gperf
|
||||
libcap
|
||||
libseccomp
|
||||
libzip
|
||||
eject
|
||||
iptables
|
||||
bc
|
||||
acl
|
||||
];
|
||||
in {
|
||||
go15 = mkGoEnv {
|
||||
inherit pkgs;
|
||||
|
||||
name = "rktGo15";
|
||||
version = "15";
|
||||
extraBuildInputs = rktBasebuildInputs;
|
||||
};
|
||||
|
||||
go16 = mkGoEnv {
|
||||
inherit pkgs;
|
||||
|
||||
name = "rktGo16";
|
||||
version = "16";
|
||||
extraBuildInputs = rktBasebuildInputs;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue