nixpkgs/pkgs/tools/misc/automirror/default.nix
2019-02-22 09:46:31 +01:00

28 lines
621 B
Nix

{stdenv, fetchFromGitHub, git, ronn}:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "automirror";
version = "49";
src = fetchFromGitHub {
owner = "schlomo";
repo = "automirror";
rev = "v${version}";
sha256 = "1syyf7dcm8fbyw31cpgmacg80h7pg036dayaaf0svvdsk0hqlsch";
};
patchPhase = "sed -i s#/usr##g Makefile";
buildInputs = [ git ronn ];
installFlags = "DESTDIR=$(out)";
meta = with stdenv.lib; {
homepage = https://github.com/schlomo/automirror;
description = "Automatic Display Mirror";
license = licenses.gpl3;
platforms = platforms.all;
};
}