nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 rustPlatform,
4 fetchFromGitHub,
5}:
6
7rustPlatform.buildRustPackage {
8 pname = "dailies";
9 version = "0.1.0";
10
11 src = fetchFromGitHub {
12 owner = "JachymPutta";
13 repo = "dailies";
14 rev = "66938203c644a54adcc1dbbe44ad37d348f3e986";
15 hash = "sha256-hT+tffJ4F4VfblfYmb1o0hl5EZjU/QOgDYudKS8EvJg=";
16 };
17
18 cargoHash = "sha256-R8r6YFo0Ih7esJl/OpcNNmmmB9pGxOXCc+3/ZivaWSw=";
19
20 meta = with lib; {
21 description = "Daily journaling in plain markdown";
22 homepage = "https://github.com/JachymPutta/dailies";
23 license = licenses.mit;
24 maintainers = with maintainers; [ JachymPutta ];
25 platforms = platforms.unix;
26 };
27}