Merge pull request #110454 from evils/bucklespring
bucklespring: init at unstable-2021-01-21
This commit is contained in:
commit
7c679678d6
2 changed files with 67 additions and 0 deletions
63
pkgs/applications/audio/bucklespring/default.nix
Normal file
63
pkgs/applications/audio/bucklespring/default.nix
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
|
||||||
|
, legacy ? false
|
||||||
|
, libinput
|
||||||
|
|
||||||
|
, pkg-config
|
||||||
|
, makeWrapper
|
||||||
|
|
||||||
|
, openal
|
||||||
|
, alure
|
||||||
|
, libXtst
|
||||||
|
, libX11
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (lib) optionals;
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "bucklespring";
|
||||||
|
version = "unstable-2021-01-21";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "zevv";
|
||||||
|
repo = pname;
|
||||||
|
rev = "d63100c4561dd7c57efe6440c12fa8d9e9604145";
|
||||||
|
sha256 = "114dib4npb7r1z2zd1fwsx71xbf9r6psxqd7n7590cwz1w3r51mz";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config makeWrapper ];
|
||||||
|
|
||||||
|
buildInputs = [ openal alure ]
|
||||||
|
++ optionals (legacy) [ libXtst libX11 ]
|
||||||
|
++ optionals (!legacy) [ libinput ];
|
||||||
|
|
||||||
|
makeFlags = optionals (!legacy) [ "libinput=1" ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
mkdir -p $out/share/wav
|
||||||
|
cp -r $src/wav $out/share/.
|
||||||
|
install -D ./buckle.desktop $out/share/applications/buckle.desktop
|
||||||
|
install -D ./buckle $out/bin/buckle
|
||||||
|
wrapProgram $out/bin/buckle --add-flags "-p $out/share/wav"
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Nostalgia bucklespring keyboard sound";
|
||||||
|
longDescription = ''
|
||||||
|
When built with libinput (wayland or bare console),
|
||||||
|
users need to be in the input group to use this:
|
||||||
|
<code>users.users.alice.extraGroups = [ "input" ];</code>
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/zevv/bucklespring";
|
||||||
|
license = licenses.gpl2Only;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = [ maintainers.evils ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1230,6 +1230,10 @@ in
|
||||||
|
|
||||||
btrfs-heatmap = callPackage ../tools/filesystems/btrfs-heatmap { };
|
btrfs-heatmap = callPackage ../tools/filesystems/btrfs-heatmap { };
|
||||||
|
|
||||||
|
bucklespring = bucklespring-x11;
|
||||||
|
bucklespring-libinput = callPackage ../applications/audio/bucklespring { };
|
||||||
|
bucklespring-x11 = callPackage ../applications/audio/bucklespring { legacy = true; };
|
||||||
|
|
||||||
buildbot = with python3Packages; toPythonApplication buildbot;
|
buildbot = with python3Packages; toPythonApplication buildbot;
|
||||||
buildbot-ui = with python3Packages; toPythonApplication buildbot-ui;
|
buildbot-ui = with python3Packages; toPythonApplication buildbot-ui;
|
||||||
buildbot-full = with python3Packages; toPythonApplication buildbot-full;
|
buildbot-full = with python3Packages; toPythonApplication buildbot-full;
|
||||||
|
|
Loading…
Reference in a new issue