sent: enable on darwin

+4 -3
+4 -3
pkgs/applications/misc/sent/default.nix
··· 2 2 , patches ? [] }: 3 3 4 4 stdenv.mkDerivation rec { 5 - name = "sent-1"; 5 + pname = "sent"; 6 + version = "1"; 6 7 7 8 src = fetchurl { 8 - url = "https://dl.suckless.org/tools/${name}.tar.gz"; 9 + url = "https://dl.suckless.org/tools/sent-${version}.tar.gz"; 9 10 sha256 = "0cxysz5lp25mgww73jl0mgip68x7iyvialyzdbriyaff269xxwvv"; 10 11 }; 11 12 ··· 26 27 description = "A simple plaintext presentation tool"; 27 28 homepage = "https://tools.suckless.org/sent/"; 28 29 license = licenses.isc; 29 - platforms = platforms.linux; 30 + platforms = platforms.unix; 30 31 maintainers = with maintainers; [ pSub ]; 31 32 }; 32 33 }