biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / filesystems / gfs2-utils / default.nix
blob00c73ce3e603d4c508e963a2e59f4352614d7292
1 { lib, stdenv, fetchurl
2 , autoreconfHook, bison, flex, pkg-config
3 , bzip2, check, ncurses, util-linux, zlib
4 }:
6 stdenv.mkDerivation rec {
7   pname = "gfs2-utils";
8   version = "3.5.1";
10   src = fetchurl {
11     url = "https://pagure.io/gfs2-utils/archive/${version}/gfs2-utils-${version}.tar.gz";
12     hash = "sha256-ZWzNfYuhIxGmSAe454vRjAKp9Lq7EBBSY36P7qVgZnw=";
13   };
15   outputs = [ "bin" "doc" "out" "man" ];
17   nativeBuildInputs = [ autoreconfHook bison flex pkg-config ];
18   buildInputs = [ bzip2 ncurses util-linux zlib ];
20   nativeCheckInputs = [ check ];
21   doCheck = true;
23   enableParallelBuilding = true;
25   meta = with lib; {
26     homepage = "https://pagure.io/gfs2-utils";
27     description = "Tools for creating, checking and working with gfs2 filesystems";
28     maintainers = with maintainers; [ qyliss ];
29     license = [ licenses.gpl2Plus licenses.lgpl2Plus ];
30     platforms = platforms.linux;
31   };