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