rnm: init at 4.0.9
This commit is contained in:
parent
f8e875671f
commit
d949f94875
2 changed files with 35 additions and 0 deletions
33
pkgs/tools/filesystems/rnm/default.nix
Normal file
33
pkgs/tools/filesystems/rnm/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, gmp
|
||||
, jpcre2
|
||||
, pcre2
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rnm";
|
||||
version = "4.0.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "neurobin";
|
||||
repo = "rnm";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-cMWIxRuL7UCDjGr26+mfEYBPRA/dxEt0Us5qU92TelY=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
gmp
|
||||
jpcre2
|
||||
pcre2
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://neurobin.org/projects/softwares/unix/rnm/";
|
||||
description = "Bulk rename utility";
|
||||
changelog = "https://github.com/neurobin/rnm/blob/${version}/ChangeLog";
|
||||
platforms = lib.platforms.all;
|
||||
license = licenses.gpl3Only;
|
||||
};
|
||||
}
|
|
@ -11200,6 +11200,8 @@ with pkgs;
|
|||
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
|
||||
};
|
||||
|
||||
rnm = callPackage ../tools/filesystems/rnm { };
|
||||
|
||||
rocket = libsForQt5.callPackage ../tools/graphics/rocket { };
|
||||
|
||||
rtabmap = libsForQt5.callPackage ../applications/video/rtabmap/default.nix {
|
||||
|
|
Loading…
Reference in a new issue