nixos-config/pkgs/spot/default.nix

21 lines
352 B
Nix
Raw Normal View History

2022-04-10 11:54:58 +02:00
{
stdenv,
fetchurl,
python3,
}: let
2024-11-18 12:16:35 +01:00
version = "2.12.1";
in
2022-04-10 11:54:58 +02:00
stdenv.mkDerivation {
inherit version;
pname = "spot";
2022-04-10 11:54:58 +02:00
buildInputs = [
python3
];
2022-04-10 11:54:58 +02:00
src = fetchurl {
url = "https://www.lrde.epita.fr/dload/spot/spot-${version}.tar.gz";
2024-11-18 12:16:35 +01:00
sha256 = "sha256-VHfAjU4dBi8WTC5IaoNVaSXQfXDyGA3nBq96qUnG/1w=";
2022-04-10 11:54:58 +02:00
};
}