1{ lib
2, fetchFromGitHub
3, python3
4}:
5
6python3.pkgs.buildPythonApplication rec {
7 pname = "compdb";
8 version = "0.2.0";
9
10 src = fetchFromGitHub {
11 owner = "Sarcasm";
12 repo = pname;
13 rev = "v${version}";
14 sha256 = "sha256-nFAgTrup6V5oE+LP4UWDOCgTVCv2v9HbQbkGW+oDnTg=";
15 };
16
17 meta = with lib; {
18 description = "Command line tool to manipulate compilation databases";
19 license = licenses.mit;
20 homepage = "https://github.com/Sarcasm/compdb";
21 maintainers = [ maintainers.detegr ];
22 };
23}