Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
868 B
Nix
40 lines
868 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "openseachest";
|
|
version = "25.05.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Seagate";
|
|
repo = "openSeaChest";
|
|
tag = "v${version}";
|
|
hash = "sha256-sZ668I38TClzTmzmRM0yQ/WG7o5AEIXFouWxmqVWyMs=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
makeFlags = [ "-C Make/gcc" ];
|
|
buildFlags = [ "release" ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/{bin,share}
|
|
cp -r Make/gcc/openseachest_exes/. $out/bin
|
|
cp -r docs/man $out/share
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Collection of command line diagnostic tools for storage devices";
|
|
homepage = "https://github.com/Seagate/openSeaChest";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ justinas ];
|
|
platforms = with platforms; freebsd ++ linux;
|
|
};
|
|
}
|