3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix

20 lines
432 B
Nix
Raw Normal View History

2019-08-02 13:52:06 +01:00
{ stdenv, fetchgit }:
2019-08-02 13:52:06 +01:00
stdenv.mkDerivation rec {
rev = "f760176c6e133667ce73aeecba8b0c0eb8822941";
version = "2019-09-11";
pname = "slack-theme-black";
2019-08-02 13:52:06 +01:00
src = fetchgit { inherit rev;
url = "https://github.com/laCour/slack-night-mode";
sha256 = "1kx8nx7mhrabs5wxqgvy86s5smy5hw49gv6yc95yxwx6ymwpgbzj";
};
2019-06-19 16:45:34 +01:00
dontUnpack = true;
buildCommand = ''
mkdir $out
2019-08-02 13:52:06 +01:00
cp $src/css/raw/black.css $out/theme.css
'';
}