pkgs: spot: bump to 2.10

This commit is contained in:
Antoine Martin 2021-11-19 12:04:58 +01:00
parent 95d9ff4249
commit 69190d7181

View file

@ -1,9 +1,9 @@
{ lib, stdenv
{ stdenv
, fetchurl
, python3
}:
let
version = "2.9.8";
version = "2.10";
in
stdenv.mkDerivation {
inherit version;
@ -15,6 +15,6 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://www.lrde.epita.fr/dload/spot/spot-${version}.tar.gz";
sha256 = "sha256-t/QEu5CjNaWRQ4Tsw/w6ICH/IsV+6XpAwHuyq0DiDPk=";
sha256 = "sha256-lm4yPBucERFK2/ADCoUqVxFk8YHZnjG9YWr+kTxSMWA=";
};
}