571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
80 lines
1.6 KiB
Nix
80 lines
1.6 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, callPackage
|
|
, cdrkit
|
|
, coreutils
|
|
, debootstrap
|
|
, fetchFromGitHub
|
|
, gnupg
|
|
, gnutar
|
|
, hivex
|
|
, makeWrapper
|
|
, nixosTests
|
|
, pkg-config
|
|
, squashfsTools
|
|
, stdenv
|
|
, wimlib
|
|
}:
|
|
|
|
let
|
|
bins = [
|
|
coreutils
|
|
debootstrap
|
|
gnupg
|
|
gnutar
|
|
squashfsTools
|
|
] ++ lib.optionals stdenv.hostPlatform.isx86_64 [
|
|
# repack-windows deps
|
|
cdrkit
|
|
hivex
|
|
wimlib
|
|
];
|
|
in
|
|
buildGoModule rec {
|
|
pname = "distrobuilder";
|
|
version = "3.1";
|
|
|
|
vendorHash = "sha256-3oHLvOdHbOdaL2FTo+a5HmayNi/i3zoAsU/du9h1N30=";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxc";
|
|
repo = "distrobuilder";
|
|
rev = "refs/tags/distrobuilder-${version}";
|
|
sha256 = "sha256-cIzIoLQmg1kgI1QRAmFh/ca88PJBW2yIY92BKHKwTMk=";
|
|
fetchSubmodules = false;
|
|
};
|
|
|
|
buildInputs = bins;
|
|
|
|
|
|
# tests require a local keyserver (mkg20001/nixpkgs branch distrobuilder-with-tests) but gpg is currently broken in tests
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
makeWrapper
|
|
] ++ bins;
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/distrobuilder --prefix PATH ":" ${lib.makeBinPath bins}
|
|
'';
|
|
|
|
passthru = {
|
|
tests = {
|
|
incus-legacy-init = nixosTests.incus.container-legacy-init;
|
|
incus-systemd-init = nixosTests.incus.container-systemd-init;
|
|
};
|
|
|
|
generator = callPackage ./generator.nix { inherit src version; };
|
|
};
|
|
|
|
meta = {
|
|
description = "System container image builder for LXC and LXD";
|
|
homepage = "https://github.com/lxc/distrobuilder";
|
|
license = lib.licenses.asl20;
|
|
maintainers = lib.teams.lxc.members;
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "distrobuilder";
|
|
};
|
|
}
|