-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdefault.nix
More file actions
28 lines (24 loc) · 746 Bytes
/
default.nix
File metadata and controls
28 lines (24 loc) · 746 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
{ lib, buildPythonApplication, setuptools, evdev, pillow, pyudev, tkinter }:
buildPythonApplication rec {
pname = "fingerpaint";
version = builtins.elemAt (builtins.match ".*version='([^']+)'.*" (builtins.readFile ./setup.py)) 0;
src = ./.;
propagatedBuildInputs = [
setuptools evdev pillow pyudev tkinter
];
meta = with lib; {
description = "Draw using your laptop's touchpad";
homepage = "https://github.com/Wazzaps/fingerpaint";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = [
{
email = "david.shlemayev@gmail.com";
matrix = "@wazzaps:matrix.org";
github = "Wazzaps";
githubId = 6624767;
name = "David Shlemayev";
}
];
};
}