Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a9e9379822bb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ca364e621828
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Sep 26, 2019

  1. lsd2dsl: init at 0.4.1

    sikmir committed Sep 26, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6d4a015 View commit details

Commits on Nov 7, 2019

  1. Merge pull request #69487 from sikmir/lsd2dsl

    lsd2dsl: init at 0.4.1
    matthewbauer authored Nov 7, 2019
    Copy the full SHA
    ca364e6 View commit details
Showing with 38 additions and 0 deletions.
  1. +36 −0 pkgs/applications/misc/lsd2dsl/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
36 changes: 36 additions & 0 deletions pkgs/applications/misc/lsd2dsl/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -19615,6 +19615,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 { };