about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libsrs2/default.nix
blob: 3da48f772545e98305257c019b4903e4312a9167 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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 = lib.platforms.linux;
  };
}