channel-scripts/flake.nix

85 lines
2.3 KiB
Nix
Raw Normal View History

2019-12-30 20:34:49 +00:00
{
edition = 201909;
description = "Script for generating Nixpkgs/NixOS channels";
inputs.nixpkgs.url = "nixpkgs/release-19.09";
2019-12-30 20:51:21 +00:00
outputs = { self, nixpkgs, nix }:
2019-12-30 20:34:49 +00:00
{
overlay = final: prev: {
nixos-channel-native-programs = with final; stdenv.mkDerivation {
name = "nixos-channel-native-programs";
buildInputs = [
2019-12-30 20:51:21 +00:00
final.nix
pkgconfig
2019-12-30 20:51:21 +00:00
boehmgc
nlohmann_json
boost
sqlite
];
2019-12-30 20:34:49 +00:00
buildCommand = ''
mkdir -p $out/bin
cp ${./file-cache.hh} file-cache.hh
g++ -Os -g ${./generate-programs-index.cc} -Wall -std=c++14 -o $out/bin/generate-programs-index -I . \
$(pkg-config --cflags nix-main) \
$(pkg-config --libs nix-main) \
$(pkg-config --libs nix-expr) \
$(pkg-config --libs nix-store) \
2019-12-30 20:51:21 +00:00
-lsqlite3 -lgc -lnixrust
2019-12-30 20:34:49 +00:00
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) \
2019-12-30 20:51:21 +00:00
-lsqlite3 -lnixrust
'';
};
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
];
buildCommand = ''
mkdir -p $out/bin
2019-12-30 20:34:49 +00:00
cp ${./mirror-nixos-branch.pl} $out/bin/mirror-nixos-branch
wrapProgram $out/bin/mirror-nixos-branch \
--set PERL5LIB $PERL5LIB \
--prefix PATH : ${wget}/bin:${git}/bin:${final.nix}/bin:${gnutar}/bin:${xz}/bin:${rsync}/bin:${openssh}/bin:${nixos-channel-native-programs}:$out/bin
2019-12-30 20:34:49 +00:00
patchShebangs $out/bin
'';
};
};
defaultPackage.x86_64-linux = (import nixpkgs {
system = "x86_64-linux";
2019-12-30 20:51:21 +00:00
overlays = [ nix.overlay self.overlay ];
2019-12-30 20:34:49 +00:00
}).nixos-channel-scripts;
};
}