mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
lsd2dsl: init at 0.4.1
This commit is contained in:
parent
bf7a1d6afe
commit
6d4a015d65
2 changed files with 38 additions and 0 deletions
36
pkgs/applications/misc/lsd2dsl/default.nix
Normal file
36
pkgs/applications/misc/lsd2dsl/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ mkDerivation, lib, fetchFromGitHub, cmake
|
||||
, boost, libvorbis, libsndfile, minizip, gtest }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "lsd2dsl";
|
||||
version = "0.4.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nongeneric";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "15xjp5xxvl0qc4zp553n7djrbvdp63sfjw406idgxqinfmkqkqdr";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ boost libvorbis libsndfile minizip gtest ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-Wno-error=unused-result";
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 lsd2dsl $out/bin/lsd2dsl
|
||||
install -m755 qtgui/lsd2dsl-qtgui $out/bin/lsd2dsl-qtgui
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://rcebits.com/lsd2dsl/";
|
||||
description = "Lingvo dictionaries decompiler";
|
||||
longDescription = ''
|
||||
A decompiler for ABBYY Lingvo’s proprietary dictionaries.
|
||||
'';
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ sikmir ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
}
|
|
@ -19246,6 +19246,8 @@ in
|
|||
|
||||
loxodo = callPackage ../applications/misc/loxodo { };
|
||||
|
||||
lsd2dsl = libsForQt5.callPackage ../applications/misc/lsd2dsl { };
|
||||
|
||||
lrzsz = callPackage ../tools/misc/lrzsz { };
|
||||
|
||||
lsp-plugins = callPackage ../applications/audio/lsp-plugins { };
|
||||
|
|
Loading…
Reference in a new issue