parent
e6a787f44a
commit
10376e7ba1
|
@ -13,4 +13,15 @@ stdenv.mkDerivation rec {
|
|||
url = "ftp://ftp.musicbrainz.org/pub/musicbrainz/${name}.tar.gz";
|
||||
sha256 = "183i4c109r5qx3mk4r986sx5xw4n5mdhdz4yz3rrv3s2xm5rqqn6";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://musicbrainz.org/doc/libmusicbrainz;
|
||||
description = "MusicBrainz Client Library (deprecated 2.x version)";
|
||||
longDescription = ''
|
||||
The libmusicbrainz (also known as mb_client or MusicBrainz Client
|
||||
Library) is a development library geared towards developers who wish to
|
||||
add MusicBrainz lookup capabilities to their applications.'';
|
||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -11,4 +11,15 @@ stdenv.mkDerivation rec {
|
|||
url = "ftp://ftp.musicbrainz.org/pub/musicbrainz/${name}.tar.gz";
|
||||
sha256 = "1nhyl9kalvcn0r86y3kps6id84y3rc43226g67bssfb2h9b5x8xr";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://musicbrainz.org/doc/libmusicbrainz;
|
||||
description = "MusicBrainz Client Library (3.x version)";
|
||||
longDescription = ''
|
||||
The libmusicbrainz (also known as mb_client or MusicBrainz Client
|
||||
Library) is a development library geared towards developers who wish to
|
||||
add MusicBrainz lookup capabilities to their applications.'';
|
||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -12,5 +12,13 @@ stdenv.mkDerivation {
|
|||
|
||||
meta = {
|
||||
homepage = http://nice.freedesktop.org/wiki/;
|
||||
description = "The GLib ICE implementation";
|
||||
longDescription = ''
|
||||
Libnice is an implementation of the IETF's Interactice Connectivity
|
||||
Establishment (ICE) standard (RFC 5245) and the Session Traversal
|
||||
Utilities for NAT (STUN) standard (RFC 5389).
|
||||
|
||||
It provides a GLib-based library, libnice and a Glib-free library,
|
||||
libstun as well as GStreamer elements.'';
|
||||
};
|
||||
}
|
||||
|
|
|
@ -11,4 +11,12 @@ stdenv.mkDerivation rec {
|
|||
url = "http://musicip-libofa.googlecode.com/files/${name}.tar.gz";
|
||||
sha256 = "184ham039l7lwhfgg0xr2vch2xnw1lwh7sid432mh879adhlc5h2";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://code.google.com/musicip-libofa/;
|
||||
description = "LibOFA - Library Open Fingerprint Architecture";
|
||||
longDescription = ''
|
||||
LibOFA (Library Open Fingerprint Architecture) is an open-source audio
|
||||
fingerprint created and provided by MusicIP'';
|
||||
};
|
||||
}
|
||||
|
|
|
@ -21,4 +21,9 @@ stdenv.mkDerivation rec {
|
|||
dontStrip = true;
|
||||
configureFlags = [ "--with-pcap=linux" "ac_cv_linux_vers=2" ];
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://www.tcpdump.org;
|
||||
description = "Packet Capture Library";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -8,4 +8,10 @@ stdenv.mkDerivation rec {
|
|||
url = "http://mp4v2.googlecode.com/files/${name}.tar.bz2";
|
||||
sha256 = "1d73qbi0faqad3bpmjfr4kk0mfmqpl1f43ysrx4gq9i3mfp1qf2w";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://code.google.com/p/mp4v2;
|
||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,9 +1,15 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "muparser-1.30";
|
||||
name = "muparser-1.34";
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/muparser/muparser_v130.tar.gz;
|
||||
sha256 = "164wak2sva6z9vq3anrciz1npyk2x3wqkz6xwp9ld3gmdqbdn8s4";
|
||||
url = mirror://sourceforge/muparser/muparser_v134.tar.gz;
|
||||
sha256 = "0xi27xjj7bwwf5nw3n2lynpr76al3vp204zwh71wkfnhwbzksg8f";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://muparser.sourceforge.net;
|
||||
description = "An extensible high performance math expression parser library written in C++";
|
||||
license = "MIT";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue