mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 18:54:42 +00:00
Merge pull request #313260 from potb/master
This commit is contained in:
commit
0db4dfd388
@ -16170,6 +16170,11 @@
|
||||
githubId = 146413;
|
||||
name = "Tobias Poschwatta";
|
||||
};
|
||||
potb = {
|
||||
name = "Peïo Thibault";
|
||||
github = "potb";
|
||||
githubId = 10779093;
|
||||
};
|
||||
poweredbypie = {
|
||||
name = "poweredbypie";
|
||||
github = "poweredbypie";
|
||||
|
30
pkgs/by-name/qw/qwerty-fr/package.nix
Normal file
30
pkgs/by-name/qw/qwerty-fr/package.nix
Normal 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 ];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user