lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 22 lines 645 B view raw
1{ lib, stdenv, fetchurl, ncurses }: 2 3stdenv.mkDerivation rec { 4 pname = "tweak"; 5 version = "3.02"; 6 7 src = fetchurl { 8 url = "https://www.chiark.greenend.org.uk/~sgtatham/tweak/${pname}-${version}.tar.gz"; 9 sha256 = "06js54pr5hwpwyxj77zs5s40n5aqvaw48dkj7rid2d47pyqijk2v"; 10 }; 11 12 buildInputs = [ ncurses ]; 13 preBuild = "substituteInPlace Makefile --replace '$(DESTDIR)/usr/local' $out"; 14 makeFlags = [ "CC:=$(CC)" "LINK:=$(CC)" ]; 15 16 meta = with lib; { 17 description = "An efficient hex editor"; 18 homepage = "http://www.chiark.greenend.org.uk/~sgtatham/tweak"; 19 license = licenses.mit; 20 platforms = platforms.unix; 21 }; 22}