ma pkgs.hactool: init at 1.4.0

This commit is contained in:
makefu 2020-08-16 21:47:33 +02:00
parent a7f67a851b
commit 568d45dde9
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
3 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,4 @@
{
MATRIX_TOKEN="a";
MATRIX_ID="b";
}

View File

@ -19,6 +19,7 @@ let
cgit.desc = "Yet Another Check-Out System"; cgit.desc = "Yet Another Check-Out System";
}; };
ebk-notify.cgit.desc = "Ebay Kleinanzeigen Notify"; ebk-notify.cgit.desc = "Ebay Kleinanzeigen Notify";
kalauerbot.cgit.desc = "Kalauer König";
}; };
krebs-repos = mapAttrs make-krebs-repo { krebs-repos = mapAttrs make-krebs-repo {

View File

@ -0,0 +1,30 @@
{ lib, stdenv, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "hactool";
name = "${pname}-${version}";
version = "1.4.0";
src = fetchFromGitHub {
owner = "SciresM";
repo = "hactool";
rev = version;
sha256 = "0305ngsnwm8npzgyhyifasi4l802xnfz19r0kbzzniirmcn4082d";
};
preBuild = ''
cp config.mk.template config.mk
'';
installPhase = ''
install -D hactool $out/bin/hactool
'';
buildInputs = [ ];
nativeBuildInputs = [ ];
meta = {
description = "PulseAudio volumene meter";
homepage = http://0pointer.de/lennart/projects/pavumeter;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ makefu ];
};
}