1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/libraries/spice-protocol/default.nix

20 lines
519 B
Nix
Raw Normal View History

2012-08-27 18:36:16 -04:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2013-07-04 11:35:52 -04:00
name = "spice-protocol-0.12.6";
2012-08-27 18:36:16 -04:00
src = fetchurl {
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
2013-07-04 11:35:52 -04:00
sha256 = "16r5x2sppiaa6pzawkrvk5q4hmw7ynmlp2xr38f1vaxj5rh4aiwx";
2012-08-27 18:36:16 -04:00
};
meta = {
description = "Protocol headers for the SPICE protocol";
2012-08-27 18:36:16 -04:00
homepage = http://www.spice-space.org;
license = stdenv.lib.licenses.bsd3;
2012-08-30 02:33:10 -04:00
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
platforms = stdenv.lib.platforms.linux;
2012-08-27 18:36:16 -04:00
};
}