Merge pull request #248799 from eclairevoyant/grim

grim: add meta.mainProgram and other cleanup
This commit is contained in:
Weijia Wang 2023-08-13 18:41:32 +02:00 committed by GitHub
commit d37313c21f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -4702,6 +4702,11 @@
githubId = 7875; githubId = 7875;
name = "Rommel Martinez"; name = "Rommel Martinez";
}; };
eclairevoyant = {
github = "eclairevoyant";
githubId = 848000;
name = "éclairevoyant";
};
edanaher = { edanaher = {
email = "nixos@edanaher.net"; email = "nixos@edanaher.net";
github = "edanaher"; github = "edanaher";

View File

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
owner = "~emersion"; owner = "~emersion";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-5csJqRLNqhyeXR4dEQtnPUSwuZ8oY+BIt6AVICkm1+o="; hash = "sha256-5csJqRLNqhyeXR4dEQtnPUSwuZ8oY+BIt6AVICkm1+o=";
}; };
mesonFlags = [ mesonFlags = [
@ -49,6 +49,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/emersion/grim"; homepage = "https://github.com/emersion/grim";
license = licenses.mit; license = licenses.mit;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ buffet ]; maintainers = with maintainers; [ buffet eclairevoyant ];
mainProgram = "grim";
}; };
} }