k 5 translate-shell: init at 0.9.0.9
This commit is contained in:
parent
625cfe81a0
commit
4050b21d16
43
krebs/5pkgs/translate-shell/default.nix
Normal file
43
krebs/5pkgs/translate-shell/default.nix
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
{stdenv, fetchurl,pkgs,... }:
|
||||||
|
let
|
||||||
|
s =
|
||||||
|
rec {
|
||||||
|
baseName="translate-shell";
|
||||||
|
version="0.9.0.9";
|
||||||
|
name="${baseName}-${version}";
|
||||||
|
url=https://github.com/soimort/translate-shell/archive/v0.9.0.9.tar.gz;
|
||||||
|
sha256="1269j4yr9dr1d8c5kmysbzfplbgdg8apqnzs5w57d29sd7gz2i34";
|
||||||
|
};
|
||||||
|
searchpath = with pkgs; stdenv.lib.makeSearchPath "bin" [
|
||||||
|
fribidi
|
||||||
|
gawk
|
||||||
|
bash
|
||||||
|
curl
|
||||||
|
less
|
||||||
|
];
|
||||||
|
buildInputs = [
|
||||||
|
pkgs.makeWrapper
|
||||||
|
];
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
inherit (s) name version;
|
||||||
|
inherit buildInputs;
|
||||||
|
src = fetchurl {
|
||||||
|
inherit (s) url sha256;
|
||||||
|
};
|
||||||
|
# TODO: maybe mplayer
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
make PREFIX=$out install
|
||||||
|
wrapProgram $out/bin/trans --suffix PATH : "${searchpath}"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
inherit (s) version;
|
||||||
|
description = ''translate using google api'';
|
||||||
|
license = stdenv.lib.licenses.free;
|
||||||
|
maintainers = [stdenv.lib.maintainers.makefu];
|
||||||
|
platforms = stdenv.lib.platforms.linux ;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user