mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
miraclecast: init at 0.0-git-20151002
This commit is contained in:
parent
26150153ba
commit
9e33e2365e
26
pkgs/os-specific/linux/miraclecast/default.nix
Normal file
26
pkgs/os-specific/linux/miraclecast/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, udev, systemd, glib, readline }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "miraclecast-0.0-git-20151002";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "albfan";
|
||||||
|
repo = "miraclecast";
|
||||||
|
rev = "30b8c2d22391423f76ba582aaaa1e0936869103a";
|
||||||
|
sha256 = "0i076n76kq64fayc7v06gr1853pk5r6ms86m57vd1xsjd0r9wyxd";
|
||||||
|
};
|
||||||
|
|
||||||
|
# INFO: It is important to list 'systemd' first as for now miraclecast
|
||||||
|
# links against a customized systemd. Otherwise, a systemd package from
|
||||||
|
# a propagatedBuildInput could take precedence.
|
||||||
|
buildInputs = [ systemd autoreconfHook pkgconfig udev glib readline ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/albfan/miraclecast;
|
||||||
|
description = "Connect external monitors via Wi-Fi";
|
||||||
|
license = licenses.lgpl21Plus;
|
||||||
|
maintainers = with maintainers; [ tstrobel ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -10006,6 +10006,10 @@ let
|
|||||||
|
|
||||||
mingetty = callPackage ../os-specific/linux/mingetty { };
|
mingetty = callPackage ../os-specific/linux/mingetty { };
|
||||||
|
|
||||||
|
miraclecast = callPackage ../os-specific/linux/miraclecast {
|
||||||
|
systemd = systemd.override { enableKDbus = true; };
|
||||||
|
};
|
||||||
|
|
||||||
module_init_tools = callPackage ../os-specific/linux/module-init-tools { };
|
module_init_tools = callPackage ../os-specific/linux/module-init-tools { };
|
||||||
|
|
||||||
aggregateModules = modules:
|
aggregateModules = modules:
|
||||||
|
Loading…
Reference in New Issue
Block a user