Skip to content

Instantly share code, notes, and snippets.

@luka-n
Created May 28, 2018 10:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luka-n/613330f87befa86d212fb3dd9cd93d04 to your computer and use it in GitHub Desktop.
Save luka-n/613330f87befa86d212fb3dd9cd93d04 to your computer and use it in GitHub Desktop.
{ lib, fetchFromGitHub, pkgs, ... }:
{
nixpkgs.config.packageOverrides = pkgs: {
tt-rss = pkgs.tt-rss.overrideAttrs (oldAttrs: {
src = [
oldAttrs.src
(fetchFromGitHub {
owner = "levito";
repo = "tt-rss-feedly-theme";
rev = "cb8908af8dd23091e3f435c17069657c61537c1f";
sha256 = "";
})
];
});
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment