blob: cf7ed7d1f13d2cef2b7383b0370b84eebbd7f583 (
plain)
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,
rustPlatform,
fetchFromGitLab,
}:
rustPlatform.buildRustPackage {
pname = "dotacat";
version = "v0.3.0";
src = fetchFromGitLab {
domain = "gitlab.scd31.com";
owner = "stephen";
repo = "dotacat";
rev = "f3b7e7816bed6b84123e066c57cf4003d77a85f1";
hash = "sha256-y+u9PO01W+IzBatGHZpgOD7cRKjdeuy4/VX7/V9cu3Q=";
};
cargoHash = "sha256-Q8jhbSfVY/8SsB8OZpOsSYZ5sRI3FjzIev3LYYpyXeM=";
meta = {
description = "Like lolcat, but fast";
homepage = "https://gitlab.scd31.com/stephen/dotacat";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ traxys ];
mainProgram = "dotacat";
};
}
|