2019-12-30 20:34:49 +00:00
|
|
|
{
|
|
|
|
description = "Script for generating Nixpkgs/NixOS channels";
|
|
|
|
|
2022-09-08 12:21:15 +00:00
|
|
|
inputs.nixpkgs.follows = "nix/nixpkgs";
|
2022-11-12 14:15:50 +00:00
|
|
|
inputs.nix-index = {
|
|
|
|
url = "github:bennofs/nix-index";
|
|
|
|
inputs.nixpkgs.follows = "nix/nixpkgs";
|
|
|
|
};
|
2019-12-30 20:34:49 +00:00
|
|
|
|
2022-11-12 14:15:50 +00:00
|
|
|
outputs = { self, nixpkgs, nix, nix-index }:
|
|
|
|
let nix-index' = nix-index.packages.x86_64-linux.nix-index; in
|
2019-12-30 20:34:49 +00:00
|
|
|
{
|
|
|
|
|
2022-09-08 12:21:15 +00:00
|
|
|
overlays.default = final: prev: {
|
2019-12-30 20:34:49 +00:00
|
|
|
|
2020-03-24 20:45:01 +00:00
|
|
|
nixos-channel-native-programs = with final; stdenv.mkDerivation {
|
|
|
|
name = "nixos-channel-native-programs";
|
|
|
|
buildInputs = [
|
2019-12-30 20:51:21 +00:00
|
|
|
final.nix
|
2020-03-24 20:45:01 +00:00
|
|
|
pkgconfig
|
2019-12-30 20:51:21 +00:00
|
|
|
boehmgc
|
|
|
|
nlohmann_json
|
|
|
|
boost
|
2020-03-24 20:45:01 +00:00
|
|
|
sqlite
|
|
|
|
];
|
2019-12-30 20:34:49 +00:00
|
|
|
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
|
|
|
|
g++ -Os -g ${./index-debuginfo.cc} -Wall -std=c++14 -o $out/bin/index-debuginfo -I . \
|
|
|
|
$(pkg-config --cflags nix-main) \
|
|
|
|
$(pkg-config --libs nix-main) \
|
|
|
|
$(pkg-config --libs nix-store) \
|
2020-07-08 11:25:30 +00:00
|
|
|
-lsqlite3
|
2020-03-24 20:45:01 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
nixos-channel-scripts = with final; stdenv.mkDerivation {
|
|
|
|
name = "nixos-channel-scripts";
|
|
|
|
|
|
|
|
buildInputs = with final.perlPackages;
|
|
|
|
[ final.nix
|
|
|
|
sqlite
|
|
|
|
makeWrapper
|
|
|
|
perl
|
|
|
|
FileSlurp
|
|
|
|
LWP
|
|
|
|
LWPProtocolHttps
|
|
|
|
ListMoreUtils
|
|
|
|
DBDSQLite
|
|
|
|
NetAmazonS3
|
|
|
|
brotli
|
|
|
|
jq
|
|
|
|
nixos-channel-native-programs
|
2022-11-12 14:15:50 +00:00
|
|
|
nix-index'
|
2020-03-24 20:45:01 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out/bin
|
2019-12-30 20:34:49 +00:00
|
|
|
|
|
|
|
cp ${./mirror-nixos-branch.pl} $out/bin/mirror-nixos-branch
|
2020-03-24 20:45:01 +00:00
|
|
|
wrapProgram $out/bin/mirror-nixos-branch \
|
|
|
|
--set PERL5LIB $PERL5LIB \
|
2022-11-12 14:15:50 +00:00
|
|
|
--prefix PATH : ${wget}/bin:${git}/bin:${final.nix}/bin:${gnutar}/bin:${xz}/bin:${rsync}/bin:${openssh}/bin:${nix-index'}/bin:${nixos-channel-native-programs}/bin:$out/bin
|
2019-12-30 20:34:49 +00:00
|
|
|
|
|
|
|
patchShebangs $out/bin
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
defaultPackage.x86_64-linux = (import nixpkgs {
|
|
|
|
system = "x86_64-linux";
|
2022-09-08 12:21:15 +00:00
|
|
|
overlays = [ nix.overlays.default self.overlays.default ];
|
2019-12-30 20:34:49 +00:00
|
|
|
}).nixos-channel-scripts;
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|