blob: 367bd6a274ec3b17695dea33c7fbf6251e17f8c0 (
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,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation (finalAttrs: {
version = "0.3.1";
pname = "snore";
src = fetchFromGitHub {
owner = "bitsmanent";
repo = "snore";
tag = finalAttrs.version;
hash = "sha256-bKPGSePzp4XEZFY0QQr37fm3R1v3hLD6FeySFd7zNJc=";
};
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = {
description = "'sleep' with feedback";
homepage = "https://github.com/bitsmanent/snore";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ cafkafk ];
platforms = lib.platforms.unix;
mainProgram = "snore";
};
})
|