nixpkgs/pkgs/misc/beep/default.nix

34 lines
789 B
Nix
Raw Normal View History

2018-04-19 08:10:57 +00:00
{ stdenv, fetchFromGitHub }:
2014-01-25 09:28:27 +00:00
# this package is working only as root
# in order to work as a non privileged user you would need to suid the bin
stdenv.mkDerivation {
name = "beep-1.3";
2018-04-19 08:10:57 +00:00
src = fetchFromGitHub {
owner = "johnath";
repo = "beep";
rev = "0d790fa45777896749a885c3b93b2c1476d59f20";
sha256 = "0dxz58an0sz5r82al5sc935y2z2k60rz12ikjvx7sz39rfirgfpc";
2014-01-25 09:28:27 +00:00
};
2018-04-19 08:10:57 +00:00
patches = [ ./cve-2018-0492.patch ];
makeFlags = [
"INSTALL_DIR=${placeholder "out"}/bin/"
"MAN_DIR=${placeholder "out"}/man/man1/"
];
2014-01-25 09:28:27 +00:00
preInstall = ''
2018-04-19 08:10:57 +00:00
mkdir -p $out/{bin,man/man1}
2014-01-25 09:28:27 +00:00
'';
2018-04-19 08:10:57 +00:00
meta = with stdenv.lib; {
2014-01-25 09:28:27 +00:00
description = "The advanced PC speaker beeper";
homepage = http://www.johnath.com/beep/;
2018-04-19 08:10:57 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
2014-01-25 09:28:27 +00:00
};
}