dailies: init at 0.1.0 (#399856)

This commit is contained in:
Ben Siraphob 2025-04-19 00:47:47 -04:00 committed by GitHub
commit f378b788da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 40 additions and 0 deletions

View File

@ -10775,6 +10775,12 @@
github = "jacg";
githubId = 2570854;
};
JachymPutta = {
email = "jachym.putta@gmail.com";
github = "JachymPutta";
githubId = 67414100;
name = "Jachym Putta";
};
jackcres = {
email = "crespomerchano@gmail.com";
github = "omarcresp";

View File

@ -0,0 +1,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;
};
}