mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
2ed5c2bd6b
Also fix meta.platform -> meta.platforms in a few places.
20 lines
397 B
Nix
20 lines
397 B
Nix
{ 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;
|
|
};
|
|
}
|