madonctl: init at 0.1.0

This commit is contained in:
Matthias Beyer 2017-04-21 14:37:46 +02:00
parent 7fb1b54cc1
commit d6caa6b273
2 changed files with 26 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };