sampler: init at 1.0.3

This commit is contained in:
Nikita Uvarov 2019-08-20 09:34:15 +02:00
parent 44099371b2
commit 1104a9724e
No known key found for this signature in database
GPG key ID: F7A5FB3A7C10EF96
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, buildGoModule, fetchFromGitHub, alsaLib }:
buildGoModule rec {
pname = "sampler";
version = "1.0.3";
src = fetchFromGitHub {
owner = "sqshq";
repo = pname;
rev = "v${version}";
sha256 = "129vifb1y57vyqj9p23gq778jschndh2y2ingwvjz0a6lrm45vpf";
};
modSha256 = "0wgwnn50lrg6ix5ll2jdwi421wgqgsv4y9xd5hfj81kya3dxcbw0";
subPackages = [ "." ];
buildInputs = [ alsaLib ];
meta = with lib; {
description = "Tool for shell commands execution, visualization and alerting";
homepage = "https://sampler.dev";
license = licenses.gpl3;
maintainers = with maintainers; [ uvnikita ];
platforms = platforms.unix;
};
}

View file

@ -15058,6 +15058,8 @@ in
sambaFull = samba4Full;
sampler = callPackage ../applications/misc/sampler { };
shairplay = callPackage ../servers/shairplay { avahi = avahi-compat; };
shairport-sync = callPackage ../servers/shairport-sync { };