mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
bf325f1bd7
It was found that Quassel could be remotely crashed and had an unauthenticated RCE vulnerability. The public annoucement can be found on the oss-sec archive [1]. The bump to 0.12.5 is supposed fixe both issues. [1] http://seclists.org/oss-sec/2018/q2/77
10 lines
212 B
Nix
10 lines
212 B
Nix
{ fetchurl }:
|
|
|
|
rec {
|
|
version = "0.12.5";
|
|
src = fetchurl {
|
|
url = "https://github.com/quassel/quassel/archive/${version}.tar.gz";
|
|
sha256 = "04f42x87a4wkj3va3wnmj2jl7ikqqa7d7nmypqpqwalzpzk7kxwv";
|
|
};
|
|
}
|