Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3f00ca96f2da
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 14ebdbb3d993
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jun 12, 2019

  1. bitlbee-discord: set BITLBEE_DATADIR

    Build fails otherwise
    
    Signed-off-by: William Casarin <jb55@jb55.com>
    jb55 authored and Lassulus committed Jun 12, 2019
    Copy the full SHA
    6845a83 View commit details
  2. bitlebee-discord: add myself as maintainer

    Signed-off-by: William Casarin <jb55@jb55.com>
    jb55 authored and Lassulus committed Jun 12, 2019
    Copy the full SHA
    14ebdbb View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 pkgs/applications/networking/instant-messengers/bitlbee-discord/default.nix
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@ stdenv.mkDerivation rec {

preConfigure = ''
export BITLBEE_PLUGINDIR=$out/lib/bitlbee
export BITLBEE_DATADIR=$out/share/bitlbee
./autogen.sh
'';

@@ -25,7 +26,7 @@ stdenv.mkDerivation rec {

homepage = https://github.com/sm00th/bitlbee-discord;
license = licenses.gpl2Plus;
maintainers = [ maintainers.lassulus ];
maintainers = with maintainers; [ lassulus jb55 ];
platforms = stdenv.lib.platforms.linux;
};
}