feat: add gitbutler

This commit is contained in:
Moritz Böhme 2024-06-17 11:12:00 +02:00
parent 8ce8af36de
commit ed9c5111e4
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ fetchzip, appimageTools }:
let
pname = "git-butler";
version = "0.12.4";
buildNum = "994";
srcZipped = fetchzip {
url = "https://releases.gitbutler.com/releases/release/${version}-${buildNum}/linux/x86_64/git-butler_${version}_amd64.AppImage.tar.gz";
hash = "sha256-+QP+H0bVSLbobv/W6lFBbl08RnwKvG8BVo68bwMrAzM=";
};
in
appimageTools.wrapType2 {
inherit pname version;
src = "${srcZipped}/git-butler_${version}_amd64.AppImage";
}