Merge pull request #262862 from eclairevoyant/gammastep

This commit is contained in:
Artturi 2023-11-07 06:22:29 +02:00 committed by GitHub
commit fa65ad7e14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@ let
"--enable-quartz=${if withQuartz then "yes" else "no"}"
"--enable-corelocation=${if withCoreLocation then "yes" else "no"}"
] ++ lib.optionals (pname == "gammastep") [
"--with-systemduserunitdir=${placeholder "out"}/share/systemd/user/"
"--with-systemduserunitdir=${placeholder "out"}/lib/systemd/user/"
"--enable-apparmor"
];
@ -117,6 +117,7 @@ rec {
license = licenses.gpl3Plus;
homepage = "http://jonls.dk/redshift";
platforms = platforms.unix;
mainProgram = "redshift";
maintainers = with maintainers; [ yana ];
};
};
@ -137,7 +138,8 @@ rec {
longDescription = "Gammastep"
+ lib.removePrefix "Redshift" redshift.meta.longDescription;
homepage = "https://gitlab.com/chinstrap/gammastep";
maintainers = [ lib.maintainers.primeos ] ++ redshift.meta.maintainers;
mainProgram = "gammastep";
maintainers = (with lib.maintainers; [ eclairevoyant primeos ]) ++ redshift.meta.maintainers;
};
};
}