tvl-depot/users/azahi/pkgs/bruh/default.nix
azahi c3645b590e feat(users/azahi/pkgs): add bruh
Just testing out depot workflow by adding random stuff.

Change-Id: I8acafe73b86d1936b64f8a4dd084c21c04e305bf
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12358
Tested-by: BuildkiteCI
Autosubmit: azahi <azat@bahawi.net>
Reviewed-by: azahi <azat@bahawi.net>
2024-08-27 12:58:56 +00:00

42 lines
774 B
Nix

{ pkgs
, lib
, ...
}:
let
inherit (pkgs)
alsa-utils
fetchFromGitHub
stdenv
;
in
stdenv.mkDerivation (finalAttrs: {
pname = "bruh";
version = "2.1";
src =
with finalAttrs;
fetchFromGitHub {
owner = "kejpies";
repo = pname;
rev = version;
hash = "sha256-Uw6Qes0IZkkfBchFnvnX9l1ZG5T5pyExmV7yUJLPOJ0=";
};
postPatch = ''
substituteInPlace bruh.c \
--replace-fail "aplay" "${alsa-utils}/bin/aplay"
'';
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Bruh sound, but as a program";
inherit (finalAttrs.src.meta) homepage;
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ azahi ];
mainProgram = "bruh";
};
})