f2fs-tools: 1.4.1 -> 1.5.0
This commit is contained in:
parent
03a842f44d
commit
b5bbbd0fe3
@ -1,21 +1,16 @@
|
|||||||
{ stdenv, fetchgit, autoconf, automake, libtool, pkgconfig, libuuid }:
|
{ stdenv, fetchurl, autoreconfHook, libuuid }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "f2fs-tools-${version}";
|
name = "f2fs-tools-${version}";
|
||||||
version = "1.4.1";
|
version = "1.5.0";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchurl {
|
||||||
url = git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git;
|
url = "http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/${name}.tar.gz";
|
||||||
rev = "refs/tags/v${version}";
|
sha256 = "1pdgl78xkagxlmavy6x118wjzz8yvl8n08fc1m6wah9bf93qlhdf";
|
||||||
sha256 = "16i74r2656q6x4gg5kgjy2fxipr5czbm10r66s34pi2lfczbwhjr";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoconf automake libtool pkgconfig libuuid ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
buildInputs = [ libuuid ];
|
||||||
preConfigure = ''
|
|
||||||
sed -i '/AC_SUBST/d' configure.ac
|
|
||||||
autoreconf --install
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/";
|
homepage = "http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user