nixpkgs-suyu/pkgs/os-specific/linux/miraclecast/default.nix

32 lines
828 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config
2017-12-26 05:18:33 +01:00
, glib, readline, pcre, systemd, udev }:
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
pname = "miraclecast";
2019-05-03 18:21:52 +02:00
version = "1.0-20190403";
src = fetchFromGitHub {
2017-12-26 05:18:33 +01:00
owner = "albfan";
repo = "miraclecast";
2019-05-03 18:21:52 +02:00
rev = "960a785e10523cc525885380dd03aa2c5ba11bc7";
sha256 = "05afqi33rv7k6pbkkw4mynj6p97vkzhhh13y5nh0yxkyhcgf45pm";
};
nativeBuildInputs = [ meson ninja pkg-config ];
2017-12-26 05:18:33 +01:00
buildInputs = [ glib pcre readline systemd udev ];
mesonFlags = [
"-Drely-udev=true"
"-Dbuild-tests=true"
];
meta = with lib; {
description = "Connect external monitors via Wi-Fi";
homepage = "https://github.com/albfan/miraclecast";
2017-12-26 05:18:33 +01:00
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ tstrobel ];
2017-12-26 05:18:33 +01:00
platforms = platforms.linux;
};
}