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 = "779bf26f7d9754879fbc1e308fc35ee154fd4b97";
version = "2019-09-07";
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 = "0p3wjwwchb0zw10rf5qlx7ffxryb42hixfrji36c57g1853qhw0f";
};
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
'';
}