2015-04-21 04:37:57 +02:00
|
|
|
{ stdenv, fetchurl, autoconf, automake, dbus, glib, libtool, pkgconfig, udisks2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2018-02-27 03:13:46 +01:00
|
|
|
name = "hal-flash-0.3.3";
|
2015-04-21 04:37:57 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-27 03:13:46 +01:00
|
|
|
url = "https://github.com/cshorler/hal-flash/archive/v0.3.3.tar.gz";
|
|
|
|
sha256 = "0dw9bx190mrh0dycw4rfvfmwwvh2sgypffr99nfnr36b38jrd6y6";
|
2015-04-21 04:37:57 +02:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ autoconf automake dbus glib libtool udisks2 ];
|
2015-04-21 04:37:57 +02:00
|
|
|
|
|
|
|
preConfigure = "libtoolize && aclocal && autoconf && automake --add-missing";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/cshorler/hal-flash;
|
2015-04-30 17:05:14 +02:00
|
|
|
description = "libhal stub library to satisfy the Flash Player DRM requirements";
|
2015-04-21 04:37:57 +02:00
|
|
|
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.
|
|
|
|
'';
|
2015-05-27 21:56:04 +02:00
|
|
|
license = with licenses; [ afl21 gpl2 ];
|
2015-04-21 04:37:57 +02:00
|
|
|
maintainers = with maintainers; [ malyn ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|