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
809 B
Nix
26 lines
809 B
Nix
{ lib, stdenv, fetchurl, pkg-config, automake, autoconf, udisks1, dbus-glib, glib, libconfuse }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "udisks-glue-1.3.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/fernandotcl/udisks-glue/archive/release-1.3.5.tar.gz";
|
|
sha256 = "317d25bf249278dc8f6a5dcf18f760512427c772b9afe3cfe34e6e1baa258176";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config automake autoconf ];
|
|
buildInputs = [ udisks1 dbus-glib glib libconfuse ];
|
|
|
|
preConfigure = "sh autogen.sh";
|
|
|
|
meta = {
|
|
homepage = "https://github.com/fernandotcl/udisks-glue";
|
|
description = "A tool to associate udisks events to user-defined actions";
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [pSub];
|
|
license = lib.licenses.bsd2;
|
|
broken = true;
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|