1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "1102r39xw17kip7mjp987jy8na333gw9vxv31f7v8q05cr7d7kfb";
15 install -Dm755 fiche -t $out/bin
21 description = "Command line pastebin for sharing terminal output";
23 Fiche is a command line pastebin server for sharing terminal output.
24 It can be used without any graphical tools from a TTY and has minimal requirements.
25 A live instance can be found at https://termbin.com.
28 echo just testing! | nc termbin.com 9999
31 homepage = "https://github.com/solusipse/fiche";
32 changelog = "https://github.com/solusipse/fiche/releases/tag/${version}";
33 license = licenses.mit;
34 maintainers = [ maintainers.pinpox ];
35 platforms = platforms.all;
36 mainProgram = "fiche";