libtorrent: remove autoconf-archive

This commit is contained in:
Thiago Kenji Okada
2025-06-11 20:32:56 +01:00
parent 700a1e18eb
commit 51bbeedb28

View File

@@ -4,7 +4,6 @@
lib,
stdenv,
fetchFromGitHub,
autoconf-archive,
autoreconfHook,
cppunit,
openssl,
@@ -13,19 +12,18 @@
gitUpdater,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "rakshasa-libtorrent";
version = "0.15.4";
src = fetchFromGitHub {
owner = "rakshasa";
repo = "libtorrent";
rev = "v${version}";
rev = "v${finalAttrs.version}";
hash = "sha256-EtT1g8fo2XRVO7pGUThoEklxpYKPI7OWwCZ2vVV73k4=";
};
nativeBuildInputs = [
autoconf-archive
autoreconfHook
pkg-config
];
@@ -53,4 +51,4 @@ stdenv.mkDerivation rec {
];
platforms = lib.platforms.unix;
};
}
})