nixos-config/pkgs/spot/default.nix

21 lines
325 B
Nix
Raw Normal View History

2021-11-19 12:04:58 +01:00
{ stdenv
, fetchurl
, python3
}:
let
2021-11-19 15:08:37 +01:00
version = "2.10.1";
in
stdenv.mkDerivation {
inherit version;
pname = "spot";
buildInputs = [
python3
];
src = fetchurl {
url = "https://www.lrde.epita.fr/dload/spot/spot-${version}.tar.gz";
2021-11-19 15:08:37 +01:00
sha256 = "sha256-OAApifyONyWEGgU3Zluy1d/CWdLgk1gQAyLDj0x0ga0=";
};
}