builtins.storePath the configured nix shell
This commit is contained in:
parent
8772eba53e
commit
5e2747cc13
|
@ -4,7 +4,7 @@ in {
|
|||
success = derivation {
|
||||
name = "success";
|
||||
system = builtins.currentSystem;
|
||||
builder = nix.shell;
|
||||
builder = builtins.storePath nix.shell;
|
||||
args = [
|
||||
"-c"
|
||||
"echo hi; printf '1\n2\n3\n4\n'; echo ${toString builtins.currentTime} > $out" ];
|
||||
|
@ -13,7 +13,7 @@ in {
|
|||
failed = derivation {
|
||||
name = "failed";
|
||||
system = builtins.currentSystem;
|
||||
builder = nix.shell;
|
||||
builder = builtins.storePath nix.shell;
|
||||
args = [
|
||||
"-c"
|
||||
"echo hi; echo ${toString builtins.currentTime}" ];
|
||||
|
|
|
@ -4,7 +4,7 @@ in {
|
|||
success = derivation {
|
||||
name = "success";
|
||||
system = builtins.currentSystem;
|
||||
builder = nix.shell;
|
||||
builder = builtins.storePath nix.shell;
|
||||
args = [
|
||||
"-c"
|
||||
"echo hi; echo ${toString builtins.currentTime} > $out" ];
|
||||
|
@ -13,7 +13,7 @@ in {
|
|||
failed = derivation {
|
||||
name = "failed";
|
||||
system = builtins.currentSystem;
|
||||
builder = nix.shell;
|
||||
builder = builtins.storePath nix.shell;
|
||||
args = [
|
||||
"-c"
|
||||
"echo hi; echo ${toString builtins.currentTime}" ];
|
||||
|
|
|
@ -4,7 +4,7 @@ in rec {
|
|||
success = derivation {
|
||||
name = "success";
|
||||
system = builtins.currentSystem;
|
||||
builder = nix.shell;
|
||||
builder = builtins.storePath nix.shell;
|
||||
args = [
|
||||
"-c"
|
||||
"echo hi; echo ${toString builtins.currentTime} > $out" ];
|
||||
|
@ -13,7 +13,7 @@ in rec {
|
|||
failed = derivation {
|
||||
name = "failed";
|
||||
system = builtins.currentSystem;
|
||||
builder = nix.shell;
|
||||
builder = builtins.storePath nix.shell;
|
||||
args = [
|
||||
"-c"
|
||||
"echo hi; echo ${toString builtins.currentTime}; echo ${success}" ];
|
||||
|
@ -22,7 +22,7 @@ in rec {
|
|||
passes-instantiation = derivation {
|
||||
name = "passes-instantiation";
|
||||
system = builtins.currentSystem;
|
||||
builder = nix.shell;
|
||||
builder = builtins.storePath nix.shell;
|
||||
args = [
|
||||
"-c"
|
||||
"echo this ones cool" ];
|
||||
|
|
|
@ -4,7 +4,7 @@ in rec {
|
|||
success = derivation {
|
||||
name = "success";
|
||||
system = builtins.currentSystem;
|
||||
builder = nix.shell;
|
||||
builder = builtins.storePath nix.shell;
|
||||
args = [
|
||||
"-c"
|
||||
"echo hi; echo ${toString builtins.currentTime} > $out" ];
|
||||
|
@ -13,7 +13,7 @@ in rec {
|
|||
failed = derivation {
|
||||
name = "failed";
|
||||
system = builtins.currentSystem;
|
||||
builder = nix.shell;
|
||||
builder = builtins.storePath nix.shell;
|
||||
args = [
|
||||
"-c"
|
||||
"echo hi; echo ${toString builtins.currentTime}; echo ${success}" ];
|
||||
|
|
Loading…
Reference in a new issue