about summary refs log tree commit diff
path: root/pkgs/tools/text/seehecht
diff options
context:
space:
mode:
authorpapojari <papojari-git.ovoid@aleeas.com>2022-04-21 19:03:45 +0200
committerpapojari <papojari-git.ovoid@aleeas.com>2022-06-05 16:02:29 +0200
commit98fd9445717b684894fb07e415772e459b42ffc0 (patch)
treefd82310e0bfb317ce8b8c7f2518290bcfa6a2df2 /pkgs/tools/text/seehecht
parent2511bad8aaf4d4de1f7a896683e92ed432eb8740 (diff)
downloadnixlib-98fd9445717b684894fb07e415772e459b42ffc0.tar
nixlib-98fd9445717b684894fb07e415772e459b42ffc0.tar.gz
nixlib-98fd9445717b684894fb07e415772e459b42ffc0.tar.bz2
nixlib-98fd9445717b684894fb07e415772e459b42ffc0.tar.lz
nixlib-98fd9445717b684894fb07e415772e459b42ffc0.tar.xz
nixlib-98fd9445717b684894fb07e415772e459b42ffc0.tar.zst
nixlib-98fd9445717b684894fb07e415772e459b42ffc0.zip
seehecht: init at 3.0.2
Diffstat (limited to 'pkgs/tools/text/seehecht')
-rw-r--r--pkgs/tools/text/seehecht/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/tools/text/seehecht/default.nix b/pkgs/tools/text/seehecht/default.nix
new file mode 100644
index 000000000000..e9ee07ee8ca6
--- /dev/null
+++ b/pkgs/tools/text/seehecht/default.nix
@@ -0,0 +1,27 @@
+{ lib, rustPlatform, fetchFromGitea }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "seehecht";
+  version = "3.0.2";
+
+  src = fetchFromGitea {
+    domain = "codeberg.org";
+    owner = "papojari";
+    repo = "seehecht";
+    rev = "v${version}";
+    sha256 = "sha256-x5zZEDaBmWpyvY+sKuiK4L+hc85prxCueWYUNMi9ty0=";
+  };
+
+  cargoSha256 = "sha256-mWGmMtUYeM97SM+/jtOzkAe1usuZT4yOI6PAbiGKe7M=";
+
+  postInstall = ''
+    ln -s $out/bin/seh $out/bin/seehecht
+  '';
+
+  meta = with lib; {
+    description = "A tool to quickly open a markdown document with already filled out frontmatter";
+    license = licenses.lgpl3Only;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ papojari ];
+  };
+}