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.
30 lines
1.0 KiB
Nix
30 lines
1.0 KiB
Nix
{ lib, stdenv, fetchurl, autoconf, automake, dbus, glib, libtool, pkg-config, udisks2 }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "hal-flash-0.3.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/cshorler/hal-flash/archive/v0.3.3.tar.gz";
|
|
sha256 = "0dw9bx190mrh0dycw4rfvfmwwvh2sgypffr99nfnr36b38jrd6y6";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ autoconf automake dbus glib libtool udisks2 ];
|
|
|
|
preConfigure = "libtoolize && aclocal && autoconf && automake --add-missing";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/cshorler/hal-flash";
|
|
description = "libhal stub library to satisfy the Flash Player DRM requirements";
|
|
longDescription =
|
|
''
|
|
Stub library based loosely upon libhal.[ch] from the hal-0.5.14
|
|
package. Provides the minimum necessary functionality to enable
|
|
libflashplayer.so/libadobecp.so to play back DRM content.
|
|
'';
|
|
license = with licenses; [ afl21 gpl2 ];
|
|
maintainers = with maintainers; [ malyn ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|