mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
9153893b84
Semi-automatic update. These checks were performed: - built on NixOS - found 0.3.3 with grep in /nix/store/88qd4dw0rxmxgqprqc0dg8jp7w3zcmzk-hal-flash-0.3.3 - found 0.3.3 in filename of file in /nix/store/88qd4dw0rxmxgqprqc0dg8jp7w3zcmzk-hal-flash-0.3.3 cc "@malyn"
30 lines
1 KiB
Nix
30 lines
1 KiB
Nix
{ stdenv, fetchurl, autoconf, automake, dbus, glib, libtool, pkgconfig, 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 = [ pkgconfig ];
|
|
buildInputs = [ autoconf automake dbus glib libtool udisks2 ];
|
|
|
|
preConfigure = "libtoolize && aclocal && autoconf && automake --add-missing";
|
|
|
|
meta = with stdenv.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;
|
|
};
|
|
}
|