1 { lib, stdenv, fetchFromGitHub }:
3 # this package is working only as root
4 # in order to work as a non privileged user you would need to suid the bin
6 stdenv.mkDerivation rec {
10 src = fetchFromGitHub {
14 sha256 = "sha256-gDgGI9F+wW2cN89IwP93PkMv6vixJA2JckF78nxZ+TU=";
17 makeFlags = [ "prefix=${placeholder "out"}"];
20 description = "The advanced PC speaker beeper";
21 homepage = "https://github.com/spkr-beep/beep";
22 license = licenses.gpl2Only;
23 platforms = platforms.linux;