mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
15 lines
413 B
Nix
15 lines
413 B
Nix
|
let
|
||
|
package = {
|
||
|
type = "derivation";
|
||
|
name = "cachix-1.7.3";
|
||
|
system = builtins.currentSystem;
|
||
|
outputs = [ "out" ];
|
||
|
# Illegal, because does not end in `.drv`
|
||
|
drvPath = "${builtins.storeDir}/8qlfcic10lw5304gqm8q45nr7g7jl62b-cachix-1.7.3-bin";
|
||
|
outputName = "out";
|
||
|
outPath = "${builtins.storeDir}/8qlfcic10lw5304gqm8q45nr7g7jl62b-cachix-1.7.3-bin";
|
||
|
out = package;
|
||
|
};
|
||
|
in
|
||
|
package
|