23b9d037de
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.
10 lines
205 B
Nix
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";
|
|
};
|
|
}
|