mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #86943 from IvarWithoutBones/betterdiscord
betterdiscordctl: init at 1.7.0
This commit is contained in:
commit
0acc36357a
2 changed files with 39 additions and 0 deletions
37
pkgs/tools/misc/betterdiscordctl/default.nix
Normal file
37
pkgs/tools/misc/betterdiscordctl/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ stdenv, fetchFromGitHub, fetchpatch }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "betterdiscordctl";
|
||||
version = "1.7.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bb010g";
|
||||
repo = "betterdiscordctl";
|
||||
rev = "v${version}";
|
||||
sha256 = "0qpmm5l8jhm7k0kqblc0bnr9fl4b6z8iddhjar03bb4kqgr962fa";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch { # Required till https://github.com/bb010g/betterdiscordctl/pull/67 is merged upstream.
|
||||
url = "https://github.com/bb010g/betterdiscordctl/pull/67/commits/f1c7170fc2626d9aec4d244977b5a73c401aa1d4.patch";
|
||||
sha256 = "003zqd9ljb9h674sjwjvvdfs7q4cw0p1ydg3lax132vb4vz9k0zi";
|
||||
})
|
||||
];
|
||||
|
||||
preBuild = "sed -i 's/^nix=$/&yes/g;s/^DISABLE_UPGRADE=$/&yes/g' ./betterdiscordctl";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mkdir -p $out/share/doc/betterdiscordctl
|
||||
install -Dm744 betterdiscordctl $out/bin/betterdiscordctl
|
||||
install -Dm644 README.md $out/share/doc/betterdiscordctl/README.md
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/bb010g/betterdiscordctl";
|
||||
description = "A utility for managing BetterDiscord on Linux";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ivar bb010g ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -981,6 +981,8 @@ in
|
|||
|
||||
berglas = callPackage ../tools/admin/berglas/default.nix { };
|
||||
|
||||
betterdiscordctl = callPackage ../tools/misc/betterdiscordctl { };
|
||||
|
||||
brakeman = callPackage ../development/tools/analysis/brakeman { };
|
||||
|
||||
brewtarget = libsForQt514.callPackage ../applications/misc/brewtarget { } ;
|
||||
|
|
Loading…
Reference in a new issue