Merge pull request #115531 from sikmir/sent

sent: enable on darwin
This commit is contained in:
Sandro 2021-03-09 14:42:43 +01:00 committed by GitHub
commit 400816c696
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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