-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflake.nix
More file actions
36 lines (31 loc) · 803 Bytes
/
Copy pathflake.nix
File metadata and controls
36 lines (31 loc) · 803 Bytes
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
31
32
33
34
35
36
{
description = "A simple text selection keyboard layout switcher";
inputs = {
nixpkgs.url = "nixpkgs/nixos-24.11";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages.${system} = {
default = pkgs.python3Packages.buildPythonApplication {
pname = "fleepit";
version = "7";
dependencies = [
pkgs.xclip
pkgs.xdotool
pkgs.wl-clipboard
];
src = ./.;
meta = with pkgs.lib;
{
description = "A simple text selection keyboard layout switcher";
license = licenses.asl20;
platforms = platforms.linux;
};
};
};
};
}