Skip to content

Instantly share code, notes, and snippets.

@coseltech
Created November 24, 2018 23:33
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 coseltech/33dc2c1e7cf407d2e9621c2282eed7ad to your computer and use it in GitHub Desktop.
Save coseltech/33dc2c1e7cf407d2e9621c2282eed7ad to your computer and use it in GitHub Desktop.
nixpkgs.overlays =
[ (self: super:
{
tt-rss-plugin-tumblr-gdpr = super.tt-rss-plugin-tumblr-gdpr.overrideAttrs (drv: rec {
name = "tt-rss-plugin-tumblr-gdpr-${version}";
version = "unstable-2018-11-25";
src = super.fetchFromGitHub {
owner = "GregThib";
repo = "ttrss-tumblr-gdpr";
rev = "c099602b4a92289ec2ed7c59706ccdc6cd887607";
sha256 = "09cbghi5b6ww4i5677i39qc9rhpq70xmygp0d7x30239r3i23rpq";
};
patches = drv.patches ++ [ ./gdpr.patch ];
});
})
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment