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
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
cglm,
|
|
gtk3,
|
|
libepoxy,
|
|
libGLU,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fsv";
|
|
version = "3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jabl";
|
|
repo = "fsv";
|
|
rev = "${pname}-${version}";
|
|
hash = "sha256-fxsA3qcBPvK4H5P4juGTe6eg1lkygvzFpNW36B9lsE4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
cglm
|
|
gtk3
|
|
libepoxy
|
|
libGLU
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
cp src/fsv $out/bin/fsv
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "File system visualizer in cyberspace";
|
|
longDescription = ''
|
|
fsv (pronounced eff-ess-vee) is a file system visualizer in cyberspace.
|
|
It lays out files and directories in three dimensions, geometrically
|
|
representing the file system hierarchy to allow visual overview
|
|
and analysis. fsv can visualize a modest home directory, a workstation's
|
|
hard drive, or any arbitrarily large collection of files, limited only
|
|
by the host computer's memory and graphics hardware.
|
|
'';
|
|
homepage = "https://github.com/jabl/fsv";
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
mainProgram = "fsv";
|
|
};
|
|
}
|