fiche: init at version 0.9.1
This commit is contained in:
parent
e3ac67d42e
commit
07d22cf075
|
@ -6751,6 +6751,16 @@
|
||||||
fingerprint = "A3A3 65AE 16ED A7A0 C29C 88F1 9712 452E 8BE3 372E";
|
fingerprint = "A3A3 65AE 16ED A7A0 C29C 88F1 9712 452E 8BE3 372E";
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
pinpox = {
|
||||||
|
email = "mail@pablo.tools";
|
||||||
|
github = "pinpox";
|
||||||
|
githubId = 1719781;
|
||||||
|
name = "Pablo Ovelleiro Corral";
|
||||||
|
keys = [{
|
||||||
|
longkeyid = "sa4096/0x823A6154426408D3";
|
||||||
|
fingerprint = "D03B 218C AE77 1F77 D7F9 20D9 823A 6154 4264 08D3";
|
||||||
|
}];
|
||||||
|
};
|
||||||
piotr = {
|
piotr = {
|
||||||
email = "ppietrasa@gmail.com";
|
email = "ppietrasa@gmail.com";
|
||||||
name = "Piotr Pietraszkiewicz";
|
name = "Piotr Pietraszkiewicz";
|
||||||
|
|
|
@ -0,0 +1,38 @@
|
||||||
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "fiche";
|
||||||
|
version = "0.9.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "solusipse";
|
||||||
|
repo = "fiche";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1102r39xw17kip7mjp987jy8na333gw9vxv31f7v8q05cr7d7kfb";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
install -m 0755 fiche $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Command line pastebin for sharing terminal output";
|
||||||
|
longDescription = ''
|
||||||
|
Fiche is a command line pastebin server for sharing terminal output.
|
||||||
|
It can be used without any graphical tools from a TTY and has minimal requirements.
|
||||||
|
A live instance can be found at https://termbin.com.
|
||||||
|
|
||||||
|
Example usage:
|
||||||
|
echo just testing! | nc termbin.com 9999
|
||||||
|
'';
|
||||||
|
|
||||||
|
homepage = "https://github.com/solusipse/fiche";
|
||||||
|
changelog = "https://github.com/solusipse/fiche/releases/tag/${version}";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.pinpox ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -142,6 +142,8 @@ in
|
||||||
|
|
||||||
ankisyncd = callPackage ../servers/ankisyncd { };
|
ankisyncd = callPackage ../servers/ankisyncd { };
|
||||||
|
|
||||||
|
fiche = callPackage ../servers/fiche { };
|
||||||
|
|
||||||
avro-tools = callPackage ../development/tools/avro-tools { };
|
avro-tools = callPackage ../development/tools/avro-tools { };
|
||||||
|
|
||||||
# Zip file format only allows times after year 1980, which makes e.g. Python wheel building fail with:
|
# Zip file format only allows times after year 1980, which makes e.g. Python wheel building fail with:
|
||||||
|
|
Loading…
Reference in New Issue