File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed
Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 1077510775 github = "jacg";
1077610776 githubId = 2570854;
1077710777 };
10778+ JachymPutta = {
10779+ 10780+ github = "JachymPutta";
10781+ githubId = 67414100;
10782+ name = "Jachym Putta";
10783+ };
1077810784 jackcres = {
10779107851078010786 github = "omarcresp";
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments