about summary refs log tree commit diff
path: root/pkgs/tools/misc/nitch/default.nix
blob: a15542b5ade1a2f0973c7ed965fbef18f312862f (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
31
32
{ lib, nimPackages, fetchFromGitHub, fetchpatch }:
nimPackages.buildNimPackage rec {
  pname = "nitch";
  version = "0.1.6";
  nimBinOnly = true;
  src = fetchFromGitHub {
    owner = "ssleert";
    repo = "nitch";
    rev = "42ad6899931dd5e0cec7b021c2b7e383fcc891f3";
    hash = "sha256-QI7CbP0lvvjD+g29FR/YJjuZboZ+PoHynsNbpYC9SvE=";
  };

  patches = [
    (fetchpatch {
      url = "https://github.com/unxsh/nitch/commit/6831cf96144f58c4da298a0bc9b50d33056f6c08.patch";
      sha256 = "sha256-uZUzUBLHBsssNqDxZ0NuTRMN9/gBxIlIiGgQkqCqEFc=";
    })
    (fetchpatch {
      url = "https://github.com/ssleert/nitch/commit/ff10dea47dbc4d9736bd839b87869f53166cf395.patch";
      hash = "sha256-n7JtI1Td0xMqhuScnMvxTkbY2I+l+FcUTz7aytxFasE=";
    })
  ];

  meta = with lib; {
    description = "Incredibly fast system fetch written in nim";
    homepage = "https://github.com/unxsh/nitch";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = with maintainers; [ michaelBelsanti ];
    mainProgram = "nitch";
  };
}