Merge pull request #313260 from potb/master

This commit is contained in:
Sandro 2024-07-16 11:25:41 +02:00 committed by GitHub
commit 0db4dfd388
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 35 additions and 0 deletions

View File

@ -16170,6 +16170,11 @@
githubId = 146413; githubId = 146413;
name = "Tobias Poschwatta"; name = "Tobias Poschwatta";
}; };
potb = {
name = "Peïo Thibault";
github = "potb";
githubId = 10779093;
};
poweredbypie = { poweredbypie = {
name = "poweredbypie"; name = "poweredbypie";
github = "poweredbypie"; github = "poweredbypie";

View File

@ -0,0 +1,30 @@
{
stdenvNoCC,
fetchFromGitHub,
lib,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "qwerty-fr";
version = "0.7.3";
src = fetchFromGitHub {
owner = "qwerty-fr";
repo = "qwerty-fr";
rev = "refs/tags/v${finalAttrs.version}";
sha256 = "sha256-TD67wKdaPaXzJzjKFCfRZl3WflUfdnUSQl/fnjr9TF8=";
};
installPhase = ''
mkdir -p $out/share/X11/xkb/symbols
cp $src/linux/us_qwerty-fr $out/share/X11/xkb/symbols
'';
meta = with lib; {
description = "Qwerty keyboard layout with French accents";
changelog = "https://github.com/qwerty-fr/qwerty-fr/blob/v${finalAttrs.version}/linux/debian/changelog";
homepage = "https://github.com/qwerty-fr/qwerty-fr";
license = licenses.mit;
maintainers = with maintainers; [ potb ];
};
})