miraclecast: 20151002 -> 20170427
This commit is contained in:
parent
cf52f8e7e5
commit
644e39abf1
@ -1,27 +1,33 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, udev, systemd, glib, readline }:
|
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig
|
||||||
|
, glib, readline, pcre, systemd, udev }:
|
||||||
|
|
||||||
with stdenv.lib;
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "miraclecast-0.0-git-20151002";
|
name = "miraclecast-${version}";
|
||||||
|
version = "1.0-20170427";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "albfan";
|
owner = "albfan";
|
||||||
repo = "miraclecast";
|
repo = "miraclecast";
|
||||||
rev = "30b8c2d22391423f76ba582aaaa1e0936869103a";
|
rev = "a395c3c7afc39a958ae8ab805dea0f5d22118f0c";
|
||||||
sha256 = "0i076n76kq64fayc7v06gr1853pk5r6ms86m57vd1xsjd0r9wyxd";
|
sha256 = "03kbjajv2x0i2g68c5aij0icf9waxnqkc9pp32z60nc8zxy9jk1y";
|
||||||
};
|
};
|
||||||
|
|
||||||
# INFO: It is important to list 'systemd' first as for now miraclecast
|
nativeBuildInputs = [ meson ninja pkgconfig ];
|
||||||
# links against a customized systemd. Otherwise, a systemd package from
|
|
||||||
# a propagatedBuildInput could take precedence.
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
||||||
buildInputs = [ systemd udev glib readline ];
|
|
||||||
|
|
||||||
meta = {
|
buildInputs = [ glib pcre readline systemd udev ];
|
||||||
homepage = https://github.com/albfan/miraclecast;
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
mesonFlags = [
|
||||||
|
"-Drely-udev=true"
|
||||||
|
"-Dbuild-tests=true"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "Connect external monitors via Wi-Fi";
|
description = "Connect external monitors via Wi-Fi";
|
||||||
license = licenses.lgpl21Plus;
|
homepage = https://github.com/albfan/miraclecast;
|
||||||
|
license = licenses.lgpl21Plus;
|
||||||
maintainers = with maintainers; [ tstrobel ];
|
maintainers = with maintainers; [ tstrobel ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user