forked from mirrors/nixpkgs
2d9a604907
The "sources.nix" also contains information about where to get binary packages, so calling it "upstream-info.nix" fits better in terms of naming. Also, we're moving it away from the sources dir, because the latter will soon vanish. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
5 lines
127 B
Bash
Executable file
5 lines
127 B
Bash
Executable file
#!/bin/sh -e
|
|
cd "$(dirname "$0")"
|
|
sp="$(nix-build -Q --no-out-link source/update.nix -A update)"
|
|
cat "$sp" > upstream-info.nix
|