2016-01-05 10:57:36 -08:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, libuuid, pkgconfig }:
|
2014-03-22 18:47:37 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "f2fs-tools-${version}";
|
2016-05-12 14:31:23 -07:00
|
|
|
version = "1.6.1";
|
2014-03-22 18:47:37 -07:00
|
|
|
|
2016-01-04 03:23:56 -08:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/${name}.tar.gz";
|
2016-05-12 14:31:23 -07:00
|
|
|
sha256 = "1fkq1iqr5kxs6ihhbmjk4i19q395azcl60mnslqwfrlbrd3p40gm";
|
2014-03-22 18:47:37 -07:00
|
|
|
};
|
|
|
|
|
2016-01-04 03:23:56 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2016-01-05 10:57:36 -08:00
|
|
|
buildInputs = [ libuuid pkgconfig ];
|
2014-03-22 18:47:37 -07:00
|
|
|
|
2015-06-06 05:21:08 -07:00
|
|
|
meta = with stdenv.lib; {
|
2014-03-22 18:47:37 -07:00
|
|
|
homepage = "http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/";
|
|
|
|
description = "Userland tools for the f2fs filesystem";
|
2015-06-06 05:21:08 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2015-12-05 13:41:25 -08:00
|
|
|
maintainers = with maintainers; [ ehmry jagajaga ];
|
2014-03-22 18:47:37 -07:00
|
|
|
};
|
|
|
|
}
|