commit
9604dcc42f
28
pkgs/os-specific/linux/hal-flash/default.nix
Normal file
28
pkgs/os-specific/linux/hal-flash/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchurl, autoconf, automake, dbus, glib, libtool, pkgconfig, udisks2 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "hal-flash-0.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/cshorler/hal-flash/archive/v0.3.0.tar.gz";
|
||||
sha256 = "163pqy39cca8cnf8rm8zr63ndsnr7rki9pf9j7dl9gyxmi7sx88s";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake dbus glib libtool pkgconfig 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 = "afl21 gpl2";
|
||||
maintainers = with maintainers; [ malyn ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -1646,6 +1646,8 @@ let
|
||||
|
||||
hashcat = callPackage ../tools/security/hashcat { };
|
||||
|
||||
hal-flash = callPackage ../os-specific/linux/hal-flash { };
|
||||
|
||||
halibut = callPackage ../tools/typesetting/halibut { };
|
||||
|
||||
hddtemp = callPackage ../tools/misc/hddtemp { };
|
||||
|
Loading…
Reference in New Issue
Block a user