mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
sent: 0.2 -> 1
Update sent to current version, adding farbfeld-dependency, updating license and URL
This commit is contained in:
parent
54dbe1d1b4
commit
f0fd8e34e7
@ -1,15 +1,18 @@
|
||||
{ stdenv, fetchurl, libpng, libX11, libXft
|
||||
{ stdenv, fetchurl, farbfeld, libX11, libXft
|
||||
, patches ? [] }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sent-0.2";
|
||||
name = "sent-1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dl.suckless.org/tools/${name}.tar.gz";
|
||||
sha256 = "0xhh752hwaa26k4q6wvrb9jnpbnylss2aw6z11j7l9rav7wn3fak";
|
||||
url = "https://dl.suckless.org/tools/${name}.tar.gz";
|
||||
sha256 = "0cxysz5lp25mgww73jl0mgip68x7iyvialyzdbriyaff269xxwvv";
|
||||
};
|
||||
|
||||
buildInputs = [ libpng libX11 libXft ];
|
||||
buildInputs = [ farbfeld libX11 libXft ];
|
||||
|
||||
# unpacking doesn't create a directory
|
||||
sourceRoot = ".";
|
||||
|
||||
inherit patches;
|
||||
|
||||
@ -17,8 +20,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A simple plaintext presentation tool";
|
||||
homepage = http://tools.suckless.org/sent/;
|
||||
license = licenses.mit;
|
||||
homepage = https://tools.suckless.org/sent/;
|
||||
license = licenses.isc;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user