ma pkgs.hactool: init at 1.4.0
This commit is contained in:
parent
a7f67a851b
commit
568d45dde9
4
makefu/0tests/data/secrets/bureautomation/citadel.nix
Normal file
4
makefu/0tests/data/secrets/bureautomation/citadel.nix
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
MATRIX_TOKEN="a";
|
||||||
|
MATRIX_ID="b";
|
||||||
|
}
|
@ -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 {
|
||||||
|
30
makefu/5pkgs/hactool/default.nix
Normal file
30
makefu/5pkgs/hactool/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user