nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

commit 7cc3506f79876f34d080389235e4533fdf7b076e
parent 7a41aa4c53a14227153de13ec5f03ad18801a70e
Author: Nikolay Korotkiy <sikmir@gmail.com>
Date:   Wed,  5 May 2021 17:42:30 +0300

Fix python-hfst

Diffstat:
Mpkgs/development/python-modules/python-hfst/default.nix | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pkgs/development/python-modules/python-hfst/default.nix b/pkgs/development/python-modules/python-hfst/default.nix @@ -1,10 +1,10 @@ { lib, python3Packages, hfst, swig }: -python3Packages.buildPythonPackage { +python3Packages.buildPythonPackage rec { pname = "python-hfst"; inherit (hfst) src version; - sourceRoot = "hfst-src/python"; + sourceRoot = "${src.name}/python"; buildInputs = [ hfst ];