python311Packages.moto: 4.2.6 -> 4.2.10
[NixPkgs.git] / pkgs / tools / misc / automirror / default.nix
blobcc10c93b3f654b68c3aa557b76e19ccb6486978c
1 {lib, stdenv, fetchFromGitHub, git, ronn}:
3 stdenv.mkDerivation rec {
4   pname = "automirror";
5   version = "49";
7   src = fetchFromGitHub {
8     owner = "schlomo";
9     repo = "automirror";
10     rev = "v${version}";
11     sha256 = "1syyf7dcm8fbyw31cpgmacg80h7pg036dayaaf0svvdsk0hqlsch";
12   };
14   patchPhase = "sed -i s#/usr##g Makefile";
16   buildInputs = [ git ronn ];
18   installFlags = [ "DESTDIR=$(out)" ];
20   meta = with lib; {
21     homepage = "https://github.com/schlomo/automirror";
22     description = "Automatic Display Mirror";
23     license = licenses.gpl3;
24     platforms = platforms.all;
25   };