libsidplayfp: init at 1.8.6
Fixes #17542. @fpletz: Removed unnecessary autotools dependencies.
This commit is contained in:
parent
93fb53908d
commit
2c81c24fa6
39
pkgs/development/libraries/libsidplayfp/default.nix
Normal file
39
pkgs/development/libraries/libsidplayfp/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv, fetchurl, pkgconfig
|
||||
, docSupport ? true, doxygen ? null, graphviz ? null }:
|
||||
|
||||
assert docSupport -> doxygen != null && graphviz != null;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libsidplayfp";
|
||||
major = "1";
|
||||
minor = "8";
|
||||
level = "6";
|
||||
version = "${major}.${minor}.${level}";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/sidplay-residfp/${pname}/${major}.${minor}/${name}.tar.gz";
|
||||
sha256 = "0lzivfdq0crmfr01c6f5h883yr7wvagq198xkk3srdmvshhxmwnw";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ]
|
||||
++ stdenv.lib.optionals docSupport [ doxygen graphviz ];
|
||||
|
||||
installTargets = [ "install" ]
|
||||
++ stdenv.lib.optionals docSupport [ "doc" ];
|
||||
|
||||
outputs = [ "out" ] ++ stdenv.lib.optionals docSupport [ "doc" ];
|
||||
|
||||
postInstall = stdenv.lib.optionalString docSupport ''
|
||||
mkdir -p $doc/share/doc/libsidplayfp
|
||||
mv docs/html $doc/share/doc/libsidplayfp/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A library to play Commodore 64 music derived from libsidplay2";
|
||||
homepage = https://sourceforge.net/projects/sidplay-residfp/;
|
||||
license = with licenses; [ gpl2Plus ];
|
||||
maintainers = with maintainers; [ ramkromberg ];
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
@ -2388,6 +2388,8 @@ in
|
||||
|
||||
liboauth = callPackage ../development/libraries/liboauth { };
|
||||
|
||||
libsidplayfp = callPackage ../development/libraries/libsidplayfp { };
|
||||
|
||||
libsrs2 = callPackage ../development/libraries/libsrs2 { };
|
||||
|
||||
libtermkey = callPackage ../development/libraries/libtermkey { };
|
||||
|
Loading…
Reference in New Issue
Block a user