commit fca3ae9623df2ff58f97464e85aebea2763a0a63 parent 55fe350166d11dd402a3a2034818fd3f1c6317f0 Author: Andreas Gruhler <andreas.gruhler@adfinis.com> Date: Fri, 7 Jun 2024 13:29:28 +0200 feat: remove diary Diffstat:
M | README | | | 1 | - |
D | diary/default.nix | | | 26 | -------------------------- |
2 files changed, 0 insertions(+), 27 deletions(-)
diff --git a/README b/README @@ -4,7 +4,6 @@ My nixpkg collection This is my collection of nixpkgs. A place where I goof around, mostly. Collection: -* diary (https://diary.p0c.ch) * oama (https://github.com/pdobsan/oama) * babeltrace2 (https://search.nixos.org/packages?query=babeltrace) diff --git a/diary/default.nix b/diary/default.nix @@ -1,26 +0,0 @@ -let - pkgs = import <nixpkgs> { }; -in - pkgs.stdenv.mkDerivation { - name = "diary"; - version = "v0.10"; - buildInputs = with pkgs; [ - ncurses - curlFull - lttng-ust - ]; - - src = pkgs.fetchgit { - url = "https://git.in0rdr.ch/diary.git"; - rev = "refs/tags/v0.10"; - hash = "sha256-jDPfqUjf0ZETYqPxvEJ2/YFFjNsF7yvVQiThc5yMvjc="; - }; - - installPhase = '' - install -d $out/bin - install -d $out/share/man/man1 - install -m755 diary $out/bin/ - install -m644 man1/diary.1 $out/share/man/man1/ - ''; - } -