* Working derivate sharing.
This commit is contained in:
parent
81304a6bb5
commit
9bcc31c941
2 changed files with 23 additions and 4 deletions
|
@ -27,11 +27,19 @@ foreach my $hash (@ARGV) {
|
|||
chomp $phash;
|
||||
die unless $phash =~ /^([0-9a-z]{32})$/;
|
||||
|
||||
# Construct a Fix expression that creates a Nar archive.
|
||||
# Construct a name for the Nix archive. If the file is an
|
||||
# fstate successor, encode this into the name.
|
||||
my $name = $phash;
|
||||
if ($path =~ /-s-([0-9a-z]{32}).nix$/) {
|
||||
$name = "$name-s-$1";
|
||||
}
|
||||
$name = $name . ".nar";
|
||||
|
||||
# Construct a Fix expression that creates a Nix archive.
|
||||
my $fixexpr =
|
||||
"App(IncludeFix(\"nar/nar.fix\"), " .
|
||||
"[ (\"path\", Path(\"$path\", Hash(\"$phash\"), [Include(\"$hash\")]))" .
|
||||
", (\"name\", \"$phash.nar\")" .
|
||||
", (\"name\", \"$name\")" .
|
||||
"])";
|
||||
|
||||
my $fixfile = "/tmp/nix-push-tmp.fix";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue