dailies: init at 0.1.0 (#399856)
This commit is contained in:
commit
f378b788da
@ -10775,6 +10775,12 @@
|
|||||||
github = "jacg";
|
github = "jacg";
|
||||||
githubId = 2570854;
|
githubId = 2570854;
|
||||||
};
|
};
|
||||||
|
JachymPutta = {
|
||||||
|
email = "jachym.putta@gmail.com";
|
||||||
|
github = "JachymPutta";
|
||||||
|
githubId = 67414100;
|
||||||
|
name = "Jachym Putta";
|
||||||
|
};
|
||||||
jackcres = {
|
jackcres = {
|
||||||
email = "crespomerchano@gmail.com";
|
email = "crespomerchano@gmail.com";
|
||||||
github = "omarcresp";
|
github = "omarcresp";
|
||||||
|
|||||||
34
pkgs/by-name/da/dailies/package.nix
Normal file
34
pkgs/by-name/da/dailies/package.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user