python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / filesystems / btrfs-heatmap / default.nix
blob9de91738e74d4798c410998376703164684b7d58
1 { stdenv, lib
2 , fetchFromGitHub
3 , python3
4 , installShellFiles
5 }:
7 stdenv.mkDerivation rec {
8   pname = "btrfs-heatmap";
9   version = "9";
11   src = fetchFromGitHub {
12     owner = "knorrie";
13     repo = "btrfs-heatmap";
14     rev = "v${version}";
15     sha256 = "sha256-yCkuZqWwxrs2eS7EXY6pAOVVVSq7dAMxJtf581gX8vg=";
16   };
18   buildInputs = [ python3 ];
19   nativeBuildInputs = [ python3.pkgs.wrapPython installShellFiles ];
21   outputs = [ "out" "man" ];
23   installPhase = ''
24     runHook preInstall
26     install -Dm 0755 btrfs-heatmap $out/sbin/btrfs-heatmap
27     installManPage man/btrfs-heatmap.1
29     buildPythonPath ${python3.pkgs.btrfs}
30     patchPythonScript $out/sbin/btrfs-heatmap
32     runHook postInstall
33   '';
35   meta = with lib; {
36     description = "Visualize the layout of a mounted btrfs";
37     homepage = "https://github.com/knorrie/btrfs-heatmap";
38     license = licenses.mit;
39     platforms = platforms.linux;
40     maintainers = [ maintainers.evils ];
41   };