Re: [Nix-dev] Including binary-only derivation in nixops deploy.

2016-02-12 Thread Oliver Charles
If you're saying you want to install something knowing only the Nix store path, you can do: { type = "derivation"; name = "whatever"; outputName = "out"; outPath = builtins.storePath "/nix/store/deadbeefdeadbeef"; } This will attempt to lookup the given store path in binary substitution

Re: [Nix-dev] Including binary-only derivation in nixops deploy.

2016-02-12 Thread Kevin Cox
On Feb 12, 2016 6:54 AM, "Oliver Charles" wrote: > > If you're saying you want to install something knowing only the Nix store path, you can do: > > { type = "derivation"; > name = "whatever"; > outputName = "out"; > outPath = builtins.storePath