1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/directvnc/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

26 lines
720 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, directfb, zlib, libjpeg, xorgproto }:
stdenv.mkDerivation rec {
pname = "directvnc";
version = "0.7.7.2015-04-16";
src = fetchFromGitHub {
owner = "drinkmilk";
repo = "directvnc";
rev = "d336f586c5865da68873960092b7b5fbc9f8617a";
sha256 = "16x7mr7x728qw7nbi6rqhrwsy73zsbpiz8pbgfzfl2aqhfdiz88b";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ directfb zlib libjpeg xorgproto ];
meta = with stdenv.lib; {
description = "DirectFB VNC client";
homepage = http://drinkmilk.github.io/directvnc/;
license = licenses.gpl2;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
};
}