mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
24 lines
606 B
Nix
24 lines
606 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "spice-protocol-0.12.10";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
|
|
sha256 = "1yrfacqgnabmx2q768mim892ga2wnlp5cavkf51v3idyjmqhv3vq";
|
|
};
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/lib
|
|
ln -sv ../share/pkgconfig $out/lib/pkgconfig
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Protocol headers for the SPICE protocol";
|
|
homepage = http://www.spice-space.org;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ bluescreen303 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|