seehecht: init at 3.0.2
This commit is contained in:
parent
2511bad8aa
commit
98fd944571
27
pkgs/tools/text/seehecht/default.nix
Normal file
27
pkgs/tools/text/seehecht/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -10018,6 +10018,8 @@ with pkgs;
|
||||
|
||||
securefs = callPackage ../tools/filesystems/securefs { };
|
||||
|
||||
seehecht = callPackage ../tools/text/seehecht { };
|
||||
|
||||
seexpr = callPackage ../development/compilers/seexpr { };
|
||||
|
||||
setroot = callPackage ../tools/X11/setroot { };
|
||||
|
Loading…
Reference in New Issue
Block a user