diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-14T11·44+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-14T11·44+0000 |
commit | 3f199f96506d2559dd51d8fff629790e057c9149 (patch) | |
tree | 2ffdc8289f70568fa63ed97097d8da04ccaee989 /infra/nixos/pkgs/pulseaudio-ctl.nix | |
parent | 83f1b769fb433c1f3be1fe38c8d31910753a6123 (diff) |
chore(nixos): Move NixOS config to infra/nixos
Diffstat (limited to 'infra/nixos/pkgs/pulseaudio-ctl.nix')
-rw-r--r-- | infra/nixos/pkgs/pulseaudio-ctl.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/infra/nixos/pkgs/pulseaudio-ctl.nix b/infra/nixos/pkgs/pulseaudio-ctl.nix new file mode 100644 index 000000000000..9651ea097f7b --- /dev/null +++ b/infra/nixos/pkgs/pulseaudio-ctl.nix @@ -0,0 +1,26 @@ +with import <nixpkgs> {}; + +stdenv.mkDerivation rec { + name = "pulseaudio-ctl-${version}"; + version = "v1.66"; + + src = fetchzip { + url = "https://github.com/graysky2/pulseaudio-ctl/archive/${version}.tar.gz"; + sha256 = "19a24w7y19551ar41q848w7r1imqkl9cpff4dpb7yry7qp1yjg0y"; + }; + + buildFlags = ''PREFIX=$(out)''; + + # Force Nix to detect the runtime dependency on 'bc' + preInstall = '' + sed -i 's|bc)|${bc}/bin/bc)|g' common/pulseaudio-ctl + ''; + + installFlags = ''PREFIX=$(out)''; + + meta = with stdenv.lib; { + description = "Control pulseaudio volume from the shell or mapped to keyboard shortcuts"; + homepage = "https://github.com/graysky2/pulseaudio-ctl"; + license = licenses.mit; + }; +} |