madonctl: init at 0.1.0
This commit is contained in:
parent
7fb1b54cc1
commit
d6caa6b273
24
pkgs/applications/misc/madonctl/default.nix
Normal file
24
pkgs/applications/misc/madonctl/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub, fetchgx }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "madonctl-${version}";
|
||||
version = "0.1.0";
|
||||
rev = "8d14d4d0847fe200d11c0b3f7a6252da5e687078";
|
||||
|
||||
goPackagePath = "github.com/McKael/madonctl";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "McKael";
|
||||
repo = "madonctl";
|
||||
sha256 = "1nd07frifkw21av9lczm12ffky10ycv9ya501mihm82c78jk1sn5";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "CLI for the Mastodon social network API";
|
||||
homepage = https://github.com/McKael/madonctl;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ matthiasbeyer ];
|
||||
};
|
||||
}
|
@ -255,6 +255,8 @@ with pkgs;
|
||||
|
||||
libredirect = callPackage ../build-support/libredirect { };
|
||||
|
||||
madonctl = callPackage ../applications/misc/madonctl { };
|
||||
|
||||
makeDesktopItem = callPackage ../build-support/make-desktopitem { };
|
||||
|
||||
makeAutostartItem = callPackage ../build-support/make-startupitem { };
|
||||
|
Loading…
Reference in New Issue
Block a user