nur-packages

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

commit 2c28a826f2e36c75dfb6f7f88be7f76218c75005
parent 2fb12002c2cc098eaa0fe1e60a321c0f3453ddf1
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date:   Tue, 21 Jun 2022 21:41:12 +0300

Up

Diffstat:
Mpkgs/geospatial/morecantile/default.nix | 4++--
Mpkgs/geospatial/tilesets-cli/default.nix | 2+-
Mpkgs/misc/musig/default.nix | 2+-
Mpkgs/osm/smrender/default.nix | 2+-
4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/pkgs/geospatial/morecantile/default.nix b/pkgs/geospatial/morecantile/default.nix @@ -12,11 +12,11 @@ python3Packages.buildPythonPackage rec { hash = "sha256-QvqXpcjunRWzfdcoyt3pUulDd20Ga8Cs9NTeLnUf5c8="; }; - propagatedBuildInputs = with python3Packages; [ pydantic pyproj ]; + propagatedBuildInputs = with python3Packages; [ attrs pydantic pyproj ]; checkInputs = with python3Packages; [ mercantile pytestCheckHook ]; - installCheckPhase = "$out/bin/morecantile --version"; + installCheckPhase = "$out/bin/morecantile --version | grep ${version} > /dev/null"; meta = with lib; { description = "Construct and use map tile grids in different projection"; diff --git a/pkgs/geospatial/tilesets-cli/default.nix b/pkgs/geospatial/tilesets-cli/default.nix @@ -27,7 +27,7 @@ python3Packages.buildPythonApplication rec { checkInputs = with python3Packages; [ pytestCheckHook ]; - installCheckPhase = "$out/bin/tilesets --version"; + installCheckPhase = "$out/bin/tilesets --version | grep ${version} > /dev/null"; meta = with lib; { description = "CLI for interacting with the Mapbox Tilesets API"; diff --git a/pkgs/misc/musig/default.nix b/pkgs/misc/musig/default.nix @@ -21,7 +21,7 @@ buildGoModule rec { doInstallCheck = true; - installCheckPhase = "$out/bin/musig --version"; + installCheckPhase = "$out/bin/musig --version | grep ${version} > /dev/null"; meta = with lib; { description = "A shazam like tool to store songs fingerprints and retrieve them"; diff --git a/pkgs/osm/smrender/default.nix b/pkgs/osm/smrender/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { doInstallCheck = true; installCheckPhase = '' runHook preInstallCheck - $out/bin/smrender -v | grep "V${version}" + $out/bin/smrender -v | grep ${version} > /dev/null runHook postInstallCheck '';