kubedog: 0.12.3 -> 0.13.0 (#375971)
[NixPkgs.git] / pkgs / by-name / fi / fiche / package.nix
blob4361019d55f70bac4832f1921af29f08cb2342f0
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "fiche";
9   version = "0.9.1";
11   src = fetchFromGitHub {
12     owner = "solusipse";
13     repo = "fiche";
14     rev = version;
15     sha256 = "1102r39xw17kip7mjp987jy8na333gw9vxv31f7v8q05cr7d7kfb";
16   };
18   installPhase = ''
19     install -Dm755 fiche -t $out/bin
20   '';
22   doCheck = true;
24   meta = with lib; {
25     description = "Command line pastebin for sharing terminal output";
26     longDescription = ''
27       Fiche is a command line pastebin server for sharing terminal output.
28       It can be used without any graphical tools from a TTY and has minimal requirements.
29       A live instance can be found at https://termbin.com.
31       Example usage:
32       echo just testing! | nc termbin.com 9999
33     '';
35     homepage = "https://github.com/solusipse/fiche";
36     changelog = "https://github.com/solusipse/fiche/releases/tag/${version}";
37     license = licenses.mit;
38     maintainers = [ maintainers.pinpox ];
39     platforms = platforms.all;
40     mainProgram = "fiche";
41   };