nixpkgs/pkgs/tools/misc/discocss/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.1 KiB
Nix
Raw Normal View History

2022-08-31 20:37:20 +01:00
{ stdenvNoCC
, lib
, fetchFromGitHub
, discordAlias ? false
, discord
, makeWrapper
}:
2020-09-17 23:52:48 +01:00
stdenvNoCC.mkDerivation rec {
pname = "discocss";
2023-01-23 19:35:34 +00:00
version = "0.2.3";
2020-09-17 23:52:48 +01:00
src = fetchFromGitHub {
owner = "mlvzk";
repo = pname;
rev = "v${version}";
2023-01-23 19:35:34 +00:00
sha256 = "sha256-of7OMgbuwebnFmbefGD1/dOhyTX1Hy7TccnWSRCweW0=";
2020-09-17 23:52:48 +01:00
};
dontBuild = true;
2022-08-31 20:37:20 +01:00
nativeBuildInputs = [ makeWrapper ];
2020-09-17 23:52:48 +01:00
installPhase = ''
2022-08-31 20:37:20 +01:00
install -Dm755 discocss $out/bin/discocss
'' + lib.optionalString discordAlias ''
wrapProgram $out/bin/discocss --set DISCOCSS_DISCORD_BIN ${discord}/bin/Discord
ln -s $out/bin/discocss $out/bin/Discord
ln -s $out/bin/discocss $out/bin/discord
mkdir -p $out/share
ln -s ${discord}/share/* $out/share
2020-09-17 23:52:48 +01:00
'';
meta = with lib; {
description = "Tiny Discord css-injector";
2021-06-18 02:23:52 +01:00
changelog = "https://github.com/mlvzk/discocss/releases/tag/v${version}";
2020-09-17 23:52:48 +01:00
homepage = "https://github.com/mlvzk/discocss";
license = licenses.mpl20;
2021-05-17 05:00:54 +01:00
platforms = platforms.unix;
2020-09-17 23:52:48 +01:00
maintainers = with maintainers; [ mlvzk ];
2023-11-27 01:17:53 +00:00
mainProgram = "discocss";
2020-09-17 23:52:48 +01:00
};
}