Skip to content

Commit 7d17796

Browse files
committed
dailies: init at 0.1.0
1 parent bdac735 commit 7d17796

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10775,6 +10775,12 @@
1077510775
github = "jacg";
1077610776
githubId = 2570854;
1077710777
};
10778+
JachymPutta = {
10779+
email = "[email protected]";
10780+
github = "JachymPutta";
10781+
githubId = 67414100;
10782+
name = "Jachym Putta";
10783+
};
1077810784
jackcres = {
1077910785
email = "[email protected]";
1078010786
github = "omarcresp";
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
lib,
3+
stdenv,
4+
rustPlatform,
5+
fetchFromGitHub,
6+
darwin,
7+
}:
8+
9+
rustPlatform.buildRustPackage rec {
10+
pname = "dailies";
11+
version = "0.1.0";
12+
13+
src = fetchFromGitHub {
14+
owner = "JachymPutta";
15+
repo = "dailies";
16+
rev = "66938203c644a54adcc1dbbe44ad37d348f3e986";
17+
hash = "sha256-hT+tffJ4F4VfblfYmb1o0hl5EZjU/QOgDYudKS8EvJg=";
18+
};
19+
20+
nativeBuildInputs = lib.optionals stdenv.isDarwin [
21+
darwin.apple_sdk.frameworks.CoreFoundation
22+
darwin.apple_sdk.frameworks.Security
23+
];
24+
25+
cargoHash = "sha256-R8r6YFo0Ih7esJl/OpcNNmmmB9pGxOXCc+3/ZivaWSw=";
26+
27+
meta = with lib; {
28+
description = "Daily journaling in plain markdown";
29+
homepage = "https://github.com/JachymPutta/dailies";
30+
license = licenses.mit;
31+
maintainers = with maintainers; [ JachymPutta ];
32+
platforms = platforms.unix;
33+
};
34+
}

0 commit comments

Comments
 (0)