hyx: 0.1.5 -> 2020-06-09

This commit is contained in:
Nikolay Korotkiy 2020-07-22 11:39:55 +03:00
parent 156ce0c302
commit fe6c0ff6b2
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5
2 changed files with 4 additions and 16 deletions

View file

@ -1,15 +1,14 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "hyx-0.1.5";
pname = "hyx";
version = "2020-06-09";
src = fetchurl {
url = "https://yx7.cc/code/hyx/${name}.tar.xz";
sha256 = "0gd8fbdyw12jwffa5dgcql4ry22xbdhqdds1qwzk1rkcrkgnc1mg";
url = "https://yx7.cc/code/hyx/hyx-${lib.replaceStrings [ "-" ] [ "." ] version}.tar.xz";
sha256 = "1x8dmll93hrnj24kn5knpwj36y6r1v2ygwynpjwrg2hwd4c1a8hi";
};
patches = [ ./no-wall-by-default.patch ];
installPhase = ''
install -vD hyx $out/bin/hyx
'';

View file

@ -1,11 +0,0 @@
--- hyx-0.1.5.org/Makefile 2018-06-02 17:14:37.000000000 +0100
+++ hyx-0.1.5/Makefile 2018-11-10 09:25:49.569961762 +0000
@@ -1,7 +1,7 @@
all: CFLAGS ?= -O2 -Wl,-s \
-Wl,-z,relro,-z,now -fpic -pie -D_FORTIFY_SOURCE=2 -fstack-protector-all
-all: CFLAGS += -std=c99 -pedantic -Wall -Wextra -DNDEBUG
+all: CFLAGS += -std=c99 -DNDEBUG
all: hyx
debug: CFLAGS ?= -O0 -g \