blob: ab126bda6876c4b2e1bea2f225f541cb77e3afc8 (
about) (
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
29
30
31
32
33
34
|
{
lib,
stdenv,
rustPlatform,
fetchFromGitHub,
darwin,
}:
rustPlatform.buildRustPackage rec {
pname = "dailies";
version = "0.1.0";
src = fetchFromGitHub {
owner = "JachymPutta";
repo = "dailies";
rev = "66938203c644a54adcc1dbbe44ad37d348f3e986";
hash = "sha256-hT+tffJ4F4VfblfYmb1o0hl5EZjU/QOgDYudKS8EvJg=";
};
nativeBuildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreFoundation
darwin.apple_sdk.frameworks.Security
];
cargoHash = "sha256-R8r6YFo0Ih7esJl/OpcNNmmmB9pGxOXCc+3/ZivaWSw=";
meta = with lib; {
description = "Daily journaling in plain markdown";
homepage = "https://github.com/JachymPutta/dailies";
license = licenses.mit;
maintainers = with maintainers; [ JachymPutta ];
platforms = platforms.unix;
};
}
|