p2pvc: new package
Added myself to maintainers
This commit is contained in:
parent
6a230188c6
commit
ec9f528961
@ -190,6 +190,7 @@
|
||||
thoughtpolice = "Austin Seipp <aseipp@pobox.com>";
|
||||
titanous = "Jonathan Rudenberg <jonathan@titanous.com>";
|
||||
tomberek = "Thomas Bereknyei <tomberek@gmail.com>";
|
||||
trino = "Hubert Mühlhans <muehlhans.hubert@ekodia.de>";
|
||||
tstrobel = "Thomas Strobel <ts468@cam.ac.uk>";
|
||||
ttuegel = "Thomas Tuegel <ttuegel@gmail.com>";
|
||||
tv = "Tomislav Viljetić <tv@shackspace.de>";
|
||||
|
26
pkgs/applications/video/p2pvc/default.nix
Normal file
26
pkgs/applications/video/p2pvc/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, pkgconfig, fetchFromGitHub, opencv, ncurses, portaudio }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "p2pvc";
|
||||
|
||||
buildInputs = [ pkgconfig opencv ncurses portaudio ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
installPhase = "mkdir -p $out/bin; cp p2pvc $out/bin/";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mofarrell";
|
||||
repo = "p2pvc";
|
||||
rev = "d7b1c70288a7750fc8f9a22dbddbe51d34b5b9e5";
|
||||
sha256 = "0d4vvrsjad5gk4rrjwgydn9ffj12jfb4aksw2px6jw75hp9pzmka";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "A point to point color terminal video chat.";
|
||||
homepage = "https://github.com/mofarrell/p2pvc";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = with stdenv.lib.maintainers; [ trino ];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
@ -2255,6 +2255,8 @@ let
|
||||
|
||||
owncloudclient = callPackage ../applications/networking/owncloud-client { };
|
||||
|
||||
p2pvc = callPackage ../applications/video/p2pvc {};
|
||||
|
||||
p7zip = callPackage ../tools/archivers/p7zip { };
|
||||
|
||||
pal = callPackage ../tools/misc/pal { };
|
||||
|
Loading…
Reference in New Issue
Block a user