1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00
nixpkgs/pkgs/tools/misc/xdxf2slob/default.nix

23 lines
670 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python3Packages }:
2016-09-25 20:41:23 +01:00
2019-08-13 22:52:01 +01:00
python3Packages.buildPythonApplication {
2016-09-25 20:41:23 +01:00
name = "xdxf2slob-unstable-2015-06-30";
src = fetchFromGitHub {
owner = "itkach";
repo = "xdxf2slob";
rev = "6831b93c3db8c73200900fa4ddcb17350a677e1b";
sha256 = "0m3dnc3816ja3kmik1wabb706dkqdf5sxvabwgf2rcrq891xcddd";
};
propagatedBuildInputs = [ python3Packages.PyICU python3Packages.slob ];
meta = with lib; {
2016-09-25 20:41:23 +01:00
description = "Tool to convert XDXF dictionary files to slob format";
homepage = "https://github.com/itkach/xdxf2slob/";
2016-09-25 20:41:23 +01:00
license = licenses.gpl3;
maintainers = [ maintainers.rycee ];
2016-09-25 20:41:23 +01:00
platforms = platforms.all;
};
}