f2fs-tools: 1.4.1 -> 1.5.0

This commit is contained in:
Arseniy Seroka 2016-01-04 14:23:56 +03:00
parent 03a842f44d
commit b5bbbd0fe3

View File

@ -1,21 +1,16 @@
{ stdenv, fetchgit, autoconf, automake, libtool, pkgconfig, libuuid }:
{ stdenv, fetchurl, autoreconfHook, libuuid }:
stdenv.mkDerivation rec {
name = "f2fs-tools-${version}";
version = "1.4.1";
version = "1.5.0";
src = fetchgit {
url = git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git;
rev = "refs/tags/v${version}";
sha256 = "16i74r2656q6x4gg5kgjy2fxipr5czbm10r66s34pi2lfczbwhjr";
src = fetchurl {
url = "http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/${name}.tar.gz";
sha256 = "1pdgl78xkagxlmavy6x118wjzz8yvl8n08fc1m6wah9bf93qlhdf";
};
buildInputs = [ autoconf automake libtool pkgconfig libuuid ];
preConfigure = ''
sed -i '/AC_SUBST/d' configure.ac
autoreconf --install
'';
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libuuid ];
meta = with stdenv.lib; {
homepage = "http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/";