nixpkgs/pkgs/by-name/ni/nitch/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1004 B
Nix
Raw Normal View History

2023-10-31 16:00:06 +00:00
{ lib, buildNimPackage, fetchFromGitHub, fetchpatch }:
buildNimPackage {
2022-09-21 06:34:20 +01:00
pname = "nitch";
version = "0.1.6";
src = fetchFromGitHub {
2023-06-03 15:42:40 +01:00
owner = "ssleert";
2022-09-21 06:34:20 +01:00
repo = "nitch";
rev = "42ad6899931dd5e0cec7b021c2b7e383fcc891f3";
hash = "sha256-QI7CbP0lvvjD+g29FR/YJjuZboZ+PoHynsNbpYC9SvE=";
};
patches = [
(fetchpatch {
url = "https://github.com/unxsh/nitch/commit/6831cf96144f58c4da298a0bc9b50d33056f6c08.patch";
hash = "sha256-uZUzUBLHBsssNqDxZ0NuTRMN9/gBxIlIiGgQkqCqEFc=";
2022-09-21 06:34:20 +01:00
})
2023-06-03 15:42:40 +01:00
(fetchpatch {
url = "https://github.com/ssleert/nitch/commit/ff10dea47dbc4d9736bd839b87869f53166cf395.patch";
hash = "sha256-n7JtI1Td0xMqhuScnMvxTkbY2I+l+FcUTz7aytxFasE=";
})
2022-09-21 06:34:20 +01:00
];
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 ];
2023-11-27 01:17:53 +00:00
mainProgram = "nitch";
2022-09-21 06:34:20 +01:00
};
}