summary refs log tree commit diff
path: root/pkgs/tools/filesystems/jfsutils/default.nix
blob: 46ded088c696331a5320a2c2c2fbd1a9c9a27729 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, libuuid }:

stdenv.mkDerivation rec {
  name = "jfsutils-1.1.15";

  src = fetchurl {
    url = "http://jfs.sourceforge.net/project/pub/${name}.tar.gz";
    sha1 = "291e8bd9d615cf3d27e4000117c81a3602484a50";
  };

  patches = [ ./types.patch ];

  buildInputs = [ libuuid ];

  meta = {
    description = "IBM JFS utilities";
    platforms = stdenv.lib.platforms.linux;
  };
}