about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/compsize/default.nix
blob: f835b9a9ec9d9c2c1d41d9a14f4a2f59befb0417 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenv, fetchFromGitHub, btrfs-progs }:

stdenv.mkDerivation rec {
  pname = "compsize";
  version = "1.5";

  src = fetchFromGitHub {
    owner = "kilobyte";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-OX41ChtHX36lVRL7O2gH21Dfw6GPPEClD+yafR/PFm8=";
  };

  buildInputs = [ btrfs-progs ];

  installPhase = ''
    mkdir -p $out/bin
    mkdir -p $out/share/man/man8
    install -m 0755 compsize $out/bin
    install -m 0444 compsize.8 $out/share/man/man8
  '';

  meta = with lib; {
    description = "btrfs: Find compression type/ratio on a file or set of files";
    homepage    = "https://github.com/kilobyte/compsize";
    license     = licenses.gpl2Plus;
    maintainers = with maintainers; [ CrazedProgrammer ];
    platforms   = platforms.linux;
  };
}