handlr-regex: 0.10.0 -> 0.10.1
This commit is contained in:
parent
85d0639f0f
commit
0aff8c5ede
@ -1,19 +1,31 @@
|
|||||||
{ lib, rustPlatform, fetchFromGitHub, shared-mime-info, libiconv, installShellFiles }:
|
{
|
||||||
|
lib,
|
||||||
|
rustPlatform,
|
||||||
|
fetchFromGitHub,
|
||||||
|
shared-mime-info,
|
||||||
|
libiconv,
|
||||||
|
installShellFiles,
|
||||||
|
nix-update-script,
|
||||||
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "handlr-regex";
|
pname = "handlr-regex";
|
||||||
version = "0.10.0";
|
version = "0.10.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Anomalocaridid";
|
owner = "Anomalocaridid";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-RCMTRf/mrLCDrmJSAofTgCHKK4GogkdGXnN4lFFQMA8=";
|
hash = "sha256-6ASljvJF/qbl8nvAZKQ2rQ8CQPovTF7FLKp8enIjIP4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-GHRryBeofZQbVTyOwMwYKVAymui8VvsUQhiwGu0+HEE=";
|
cargoHash = "sha256-4tm7N8l7ScKhhOFxt/1ssArdF9fgvCyrDrBASaiOusI=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
installShellFiles
|
||||||
|
shared-mime-info
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles shared-mime-info ];
|
|
||||||
buildInputs = [ libiconv ];
|
buildInputs = [ libiconv ];
|
||||||
|
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
@ -29,6 +41,8 @@ rustPlatform.buildRustPackage rec {
|
|||||||
installManPage assets/manual/man1/*
|
installManPage assets/manual/man1/*
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Fork of handlr with support for regex";
|
description = "Fork of handlr with support for regex";
|
||||||
homepage = "https://github.com/Anomalocaridid/handlr-regex";
|
homepage = "https://github.com/Anomalocaridid/handlr-regex";
|
||||||
|
Loading…
Reference in New Issue
Block a user