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 ? [] }:
|
, patches ? [] }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "sent-0.2";
|
name = "sent-1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://dl.suckless.org/tools/${name}.tar.gz";
|
url = "https://dl.suckless.org/tools/${name}.tar.gz";
|
||||||
sha256 = "0xhh752hwaa26k4q6wvrb9jnpbnylss2aw6z11j7l9rav7wn3fak";
|
sha256 = "0cxysz5lp25mgww73jl0mgip68x7iyvialyzdbriyaff269xxwvv";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libpng libX11 libXft ];
|
buildInputs = [ farbfeld libX11 libXft ];
|
||||||
|
|
||||||
|
# unpacking doesn't create a directory
|
||||||
|
sourceRoot = ".";
|
||||||
|
|
||||||
inherit patches;
|
inherit patches;
|
||||||
|
|
||||||
@ -17,8 +20,8 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A simple plaintext presentation tool";
|
description = "A simple plaintext presentation tool";
|
||||||
homepage = http://tools.suckless.org/sent/;
|
homepage = https://tools.suckless.org/sent/;
|
||||||
license = licenses.mit;
|
license = licenses.isc;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ pSub ];
|
maintainers = with maintainers; [ pSub ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user