depot/third_party/nixpkgs/pkgs/tools/virtualization/supermin/default.nix
Default email 6d4aeb4377 Project import generated by Copybara.
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
2023-01-11 08:51:40 +01:00

30 lines
910 B
Nix

{ lib, stdenv, fetchurl
, cpio, e2fsprogs, perl, pkg-config, ocamlPackages
, glibc
}:
stdenv.mkDerivation (finalAttrs: {
pname = "supermin";
version = "5.2.2";
src = fetchurl {
url = "https://download.libguestfs.org/supermin/${lib.versions.majorMinor finalAttrs.version}-stable/supermin-${finalAttrs.version}.tar.gz";
sha256 = "zjkh02NcgWjPt8oMWoK51c71srJx+Et3bWO4u77sNY4=";
};
nativeBuildInputs = [ cpio e2fsprogs perl pkg-config ]
++ (with ocamlPackages; [ findlib ocaml ]);
buildInputs = lib.optionals stdenv.hostPlatform.isGnu [ glibc glibc.static ];
postPatch = ''
patchShebangs src/bin2c.pl
'';
meta = with lib; {
homepage = "https://libguestfs.org/supermin.1.html";
description = "Tool for creating and building supermin appliances";
maintainers = with maintainers; [ qyliss ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
})