nixpkgs/pkgs/applications/networking/irc/quassel/source.nix
zimbatm 23b9d037de quassel: fix sources
Fixes changes after #14080 where the updated hash was missing.

Put the source in a common file so there is only one place to update.
2016-03-22 12:10:22 +00:00

10 lines
205 B
Nix

{ fetchurl }:
rec {
version = "0.12.3";
src = fetchurl {
url = "http://quassel-irc.org/pub/quassel-${version}.tar.bz2";
sha256 = "0d6lwf6qblj1ia5j9mjy112zrmpbbg9mmxgscbgxiqychldyjgjd";
};
}