nixpkgs/pkgs/tools/misc/automirror/default.nix
2020-04-10 17:54:53 +01:00

27 lines
595 B
Nix

{stdenv, fetchFromGitHub, git, ronn}:
stdenv.mkDerivation rec {
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;
};
}