lol

Merge pull request #15777 from rnhmjoj/btfs

btfs: 2.8 -> 2.9

+7 -8
+7 -8
pkgs/os-specific/linux/btfs/default.nix
··· 1 - { stdenv, fetchFromGitHub, pkgconfig, autoconf, automake, 1 + { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, 2 2 python, boost, fuse, libtorrentRasterbar, curl }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 name = "btfs-${version}"; 6 - version = "2.8"; 6 + version = "2.9"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "johang"; 10 10 repo = "btfs"; 11 - rev = "0567010e553b290eaa50b1afaa717dd7656c82de"; 12 - sha256 = "1x3x1v7fhcfcpffprf63sb720nxci2ap2cq92jy1xd68kmshdmwd"; 11 + rev = "3ee6671eca2c0e326ac38d07cab4989ebad3495c"; 12 + sha256 = "0f7yc7hkfwdj9hixsyswf17yrpcpwxxb0svj5lfqcir8a45kf100"; 13 13 }; 14 - 14 + 15 15 buildInputs = [ 16 - pkgconfig autoconf automake boost 16 + boost autoreconfHook pkgconfig 17 17 fuse libtorrentRasterbar curl 18 18 ]; 19 19 20 - preConfigure = '' 21 - autoreconf -i 20 + preInstall = '' 22 21 substituteInPlace scripts/btplay \ 23 22 --replace "/usr/bin/env python" "${python}/bin/python" 24 23 '';