nixpkgs/pkgs/applications/video/p2pvc/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

27 lines
740 B
Nix

{ 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;
};
}