python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libsrs2 / default.nix
blob3da48f772545e98305257c019b4903e4312a9167
1 { stdenv, lib, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "libsrs2";
5   version = "1.0.18";
7   src = fetchurl {
8     url = "https://www.libsrs2.org/srs/libsrs2-${version}.tar.gz";
9     sha256 = "9d1191b705d7587a5886736899001d04168392bbb6ed6345a057ade50943a492";
10   };
12   meta = {
13     description = "The next generation SRS library from the original designer of SRS";
14     license = with lib.licenses; [ gpl2 bsd3 ];
15     homepage = "https://www.libsrs2.org/";
16     platforms = lib.platforms.linux;
17   };