7 stdenv.mkDerivation rec {
8 pname = "openseachest";
11 src = fetchFromGitHub {
13 repo = "openSeaChest";
15 hash = "sha256-1vfWX6uTQcM6K6wu9Ygu2xZV4nXm6VnwNHmQ2ceh62s=";
16 fetchSubmodules = true;
19 makeFlags = [ "-C Make/gcc" ];
20 buildFlags = [ "release" ];
25 mkdir -p $out/{bin,share}
26 cp -r Make/gcc/openseachest_exes/. $out/bin
27 cp -r docs/man $out/share
33 description = "Collection of command line diagnostic tools for storage devices";
34 homepage = "https://github.com/Seagate/openSeaChest";
35 license = licenses.mpl20;
36 maintainers = with maintainers; [ justinas ];
37 platforms = with platforms; freebsd ++ linux;