mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
libsrs2: init at 1.0.18
This commit is contained in:
parent
d28a06553e
commit
8b44922a4c
17
pkgs/development/libraries/libsrs2/default.nix
Normal file
17
pkgs/development/libraries/libsrs2/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ stdenv, lib, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libsrs2-${version}";
|
||||
version = "1.0.18";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://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 = http://www.libsrs2.org/;
|
||||
};
|
||||
}
|
@ -2172,6 +2172,8 @@ let
|
||||
|
||||
liboauth = callPackage ../development/libraries/liboauth { };
|
||||
|
||||
libsrs2 = callPackage ../development/libraries/libsrs2 { };
|
||||
|
||||
libtermkey = callPackage ../development/libraries/libtermkey { };
|
||||
|
||||
libtirpc = callPackage ../development/libraries/ti-rpc { };
|
||||
|
Loading…
Reference in New Issue
Block a user