blob: f898073f77c1ba3945c142c879f0630a6f3948bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 ];
};
})
|