nixpkgs/pkgs/development/libraries/spice-protocol/default.nix

25 lines
636 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2012-08-27 22:36:16 +00:00
stdenv.mkDerivation rec {
pname = "spice-protocol";
2020-03-09 22:44:06 +00:00
version = "0.14.1";
2012-08-27 22:36:16 +00:00
src = fetchurl {
url = "https://www.spice-space.org/download/releases/${pname}-${version}.tar.bz2";
2020-03-09 22:44:06 +00:00
sha256 = "0ahk5hlanwhbc64r80xmchdav3ls156cvh9l68a0l22bhdhxmrkr";
2012-08-27 22:36:16 +00:00
};
2015-09-18 18:16:44 +00:00
postInstall = ''
mkdir -p $out/lib
ln -sv ../share/pkgconfig $out/lib/pkgconfig
'';
meta = with lib; {
description = "Protocol headers for the SPICE protocol";
2020-03-09 22:44:06 +00:00
homepage = "https://www.spice-space.org/";
2014-09-01 07:47:42 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ bluescreen303 ];
platforms = platforms.linux;
2012-08-27 22:36:16 +00:00
};
}