depot/third_party/nixpkgs/pkgs/development/libraries/libsrs2/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

18 lines
511 B
Nix

{ stdenv, lib, fetchurl }:
stdenv.mkDerivation rec {
pname = "libsrs2";
version = "1.0.18";
src = fetchurl {
url = "https://www.libsrs2.org/srs/libsrs2-${version}.tar.gz";
sha256 = "9d1191b705d7587a5886736899001d04168392bbb6ed6345a057ade50943a492";
};
meta = {
description = "The next generation SRS library from the original designer of SRS";
license = with lib.licenses; [ gpl2 bsd3 ];
homepage = "https://www.libsrs2.org/";
platforms = stdenv.lib.platforms.linux;
};
}