12 stdenv.mkDerivation rec {
16 src = fetchFromGitHub {
17 owner = "libsidplayfp";
18 repo = "exsid-driver";
20 sha256 = "1qbiri549fma8c72nmj3cpz3sn1vc256kfafnygkmkzg7wdmgi7r";
23 outputs = [ "out" ] ++ lib.optional docSupport "doc";
28 ] ++ lib.optional docSupport doxygen;
30 buildInputs = [ libftdi1 ];
32 enableParallelBuilding = true;
34 installTargets = [ "install" ] ++ lib.optional docSupport "doc";
36 postInstall = lib.optionalString docSupport ''
37 mkdir -p $doc/share/libexsid/doc
38 cp -r docs/html $doc/share/libexsid/doc/
42 description = "Driver for exSID USB";
43 homepage = "http://hacks.slashdirt.org/hw/exsid/";
44 license = licenses.gpl2Plus;
45 maintainers = with maintainers; [ OPNA2608 ];
46 platforms = platforms.all;