2015-12-26 03:58:09 +00:00
|
|
|
{ stdenv, lib, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libsrs2";
|
2015-12-26 03:58:09 +00:00
|
|
|
version = "1.0.18";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-01-05 19:42:46 +00:00
|
|
|
url = "https://www.libsrs2.org/srs/libsrs2-${version}.tar.gz";
|
2015-12-26 03:58:09 +00:00
|
|
|
sha256 = "9d1191b705d7587a5886736899001d04168392bbb6ed6345a057ade50943a492";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The next generation SRS library from the original designer of SRS";
|
|
|
|
license = with lib.licenses; [ gpl2 bsd3 ];
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.libsrs2.org/";
|
2021-01-21 17:00:13 +00:00
|
|
|
platforms = lib.platforms.linux;
|
2015-12-26 03:58:09 +00:00
|
|
|
};
|
2016-08-02 18:50:55 +01:00
|
|
|
}
|