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.
26 lines
706 B
Nix
26 lines
706 B
Nix
{ lib, stdenv, fetchgit, autoreconfHook, pkg-config, fuse, libuuid, lz4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "erofs-utils";
|
|
version = "1.2";
|
|
outputs = [ "out" "man" ];
|
|
|
|
src = fetchgit {
|
|
url =
|
|
"https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git";
|
|
rev = "v" + version;
|
|
sha256 = "07hvijq2hsn3gg1kb8abrfk23n83j57yx8kyv4wqgwhhvd30myjc";
|
|
};
|
|
|
|
buildInputs = [ autoreconfHook pkg-config fuse libuuid lz4 ];
|
|
|
|
configureFlags = [ "--enable-fuse" ];
|
|
|
|
meta = with lib; {
|
|
description = "Userspace utilities for linux-erofs file system";
|
|
license = with licenses; [ gpl2 ];
|
|
maintainers = with maintainers; [ ehmry ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|