mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
add spice-protocol-0.10.1
This commit is contained in:
parent
af6265e66d
commit
30514a5346
19
pkgs/development/libraries/spice-protocol/default.nix
Normal file
19
pkgs/development/libraries/spice-protocol/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "spice-protocol-0.10.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
|
||||
sha256 = "0drmy2ws7qwmvjxfynhssbvh1y954rfik99hnl789g7yg6vcpxp5";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Protocol headers for the SPICE protocol.";
|
||||
homepage = http://www.spice-space.org;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.bluescreen303.nl ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
|
@ -4795,6 +4795,8 @@ let
|
|||
|
||||
sphinxbase = callPackage ../development/libraries/sphinxbase { };
|
||||
|
||||
spiceProtocol = callPackage ../development/libraries/spice-protocol { };
|
||||
|
||||
sratom = callPackage ../development/libraries/audio/sratom { };
|
||||
|
||||
srtp = callPackage ../development/libraries/srtp {};
|
||||
|
|
Loading…
Reference in a new issue