sent: enable on darwin

This commit is contained in:
Nikolay Korotkiy 2021-03-09 16:09:34 +03:00
parent 0e97a17319
commit f15d4581ab
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5

View file

@ -2,10 +2,11 @@
, patches ? [] }:
stdenv.mkDerivation rec {
name = "sent-1";
pname = "sent";
version = "1";
src = fetchurl {
url = "https://dl.suckless.org/tools/${name}.tar.gz";
url = "https://dl.suckless.org/tools/sent-${version}.tar.gz";
sha256 = "0cxysz5lp25mgww73jl0mgip68x7iyvialyzdbriyaff269xxwvv";
};
@ -26,7 +27,7 @@ stdenv.mkDerivation rec {
description = "A simple plaintext presentation tool";
homepage = "https://tools.suckless.org/sent/";
license = licenses.isc;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
};
}