Skip to content
This repository has been archived by the owner on Dec 29, 2021. It is now read-only.

Add build users and bashInteractive build #4

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,18 @@ let
# Create root user
mkdir -p /etc
echo 'root:x:0:0::/root:/root/.nix-profile/bin/bash' > /etc/passwd
echo 'nixbld0:x:3000:1::/root:/root/.nix-profile/bin/bash' >> /etc/passwd
echo 'nixbld1:x:3001:1::/root:/root/.nix-profile/bin/bash' >> /etc/passwd
echo 'nixbld2:x:3002:1::/root:/root/.nix-profile/bin/bash' >> /etc/passwd
echo 'nixbld3:x:3003:1::/root:/root/.nix-profile/bin/bash' >> /etc/passwd
echo 'nixbld4:x:3004:1::/root:/root/.nix-profile/bin/bash' >> /etc/passwd
echo 'nixbld5:x:3005:1::/root:/root/.nix-profile/bin/bash' >> /etc/passwd
echo 'nixbld6:x:3006:1::/root:/root/.nix-profile/bin/bash' >> /etc/passwd
echo 'nixbld7:x:3007:1::/root:/root/.nix-profile/bin/bash' >> /etc/passwd
echo 'nixbld8:x:3008:1::/root:/root/.nix-profile/bin/bash' >> /etc/passwd
echo 'nixbld9:x:3009:1::/root:/root/.nix-profile/bin/bash' >> /etc/passwd
echo 'root:x:0:' > /etc/group
echo 'nixbld:x:1:nixbld0,nixbld1,nixbld2,nixbld3,nixbld4,nixbld5,nixbld6,nixbld7,nixbld8,nixbld9' > /etc/group

# TODO: why do we need this files explain in comments
mkdir -p /etc
Expand Down Expand Up @@ -121,6 +132,7 @@ let
# Make the shell source nix.sh during login.
nix_profile=/root/.nix-profile/etc/profile.d/nix.sh
echo "if [ -e $nix_profile ]; then . $nix_profile; fi" >> /root/.bash_profile

'' + runAsRoot;
}));

Expand All @@ -141,6 +153,10 @@ in
pkgs.tree
pkgs.gnugrep
];
extraCommands = ''
mkdir -p /etc/nix
echo "sandbox = false" > /etc/nix/nix.conf
'';
};
# TODO: withSandbox = buildImageWithNixSandbox {
# name = "nix-sandbox";
Expand Down
6 changes: 6 additions & 0 deletions nix-verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ cd $BATS_TMPDIR
[ "`./result/bin/hello`" == "Hello, world!" ]
}

@test "Verify hello build using nix-build" {
nix-build -E 'with (import <nixpkgs> {}); hello.overrideAttrs(old:{forcerebuild=1;})'
nix-build -E '<nixpkgs>' -A hello --check
[ "`./result/bin/hello`" == "Hello, world!" ]
}

@test "Test sandbox is disabled" {
cat >tmp.nix <<'EOL'
let
Expand Down