about summary refs log tree commit diff
path: root/pkgs/tools/text/markscribe
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-07-21 10:39:08 -0400
committerfigsoda <figsoda@pm.me>2023-07-21 10:39:08 -0400
commit4a448e76e6a2a06157ec7e63a82f114f2c7cac92 (patch)
treecad1b7f545c201ea8f44b0fce1e2ae5abe7892a6 /pkgs/tools/text/markscribe
parent1708e6ad6340829bda29739ffa16a33c124cffd1 (diff)
downloadnixlib-4a448e76e6a2a06157ec7e63a82f114f2c7cac92.tar
nixlib-4a448e76e6a2a06157ec7e63a82f114f2c7cac92.tar.gz
nixlib-4a448e76e6a2a06157ec7e63a82f114f2c7cac92.tar.bz2
nixlib-4a448e76e6a2a06157ec7e63a82f114f2c7cac92.tar.lz
nixlib-4a448e76e6a2a06157ec7e63a82f114f2c7cac92.tar.xz
nixlib-4a448e76e6a2a06157ec7e63a82f114f2c7cac92.tar.zst
nixlib-4a448e76e6a2a06157ec7e63a82f114f2c7cac92.zip
markscribe: init at 0.6.0
https://github.com/muesli/markscribe
Diffstat (limited to 'pkgs/tools/text/markscribe')
-rw-r--r--pkgs/tools/text/markscribe/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/text/markscribe/default.nix b/pkgs/tools/text/markscribe/default.nix
new file mode 100644
index 000000000000..d542fe281107
--- /dev/null
+++ b/pkgs/tools/text/markscribe/default.nix
@@ -0,0 +1,28 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "markscribe";
+  version = "0.6.0";
+
+  src = fetchFromGitHub {
+    owner = "muesli";
+    repo = "markscribe";
+    rev = "v${version}";
+    hash = "sha256-I8WSG9rMqgf2QADQetlYTSUIQH1Iv8cMVw/3uIwEDPc=";
+  };
+
+  vendorHash = "sha256-leeP2+W+bnYASls3k0l4jpz1rc1mAkMWUfrY2uBUUdQ=";
+
+  ldflags = [ "-s" "-w" ];
+
+  meta = with lib; {
+    description = "Your personal markdown scribe with template-engine and Git(Hub) & RSS powers";
+    homepage = "https://github.com/muesli/markscribe";
+    changelog = "https://github.com/muesli/markscribe/releases/tag/${src.rev}";
+    license = licenses.mit;
+    maintainers = with maintainers; [ figsoda ];
+  };
+}