9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
28 lines
733 B
Nix
28 lines
733 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
|
|
, python3, boost, fuse, libtorrent-rasterbar, curl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "btfs";
|
|
version = "2.23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "johang";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1cfjhyn9cjyyxyd0f08b2ra258pzkljwvkj0iwrjpd0nrbl6wkq5";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [
|
|
boost fuse libtorrent-rasterbar curl python3
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A bittorrent filesystem based on FUSE";
|
|
homepage = "https://github.com/johang/btfs";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|