mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
36 lines
882 B
Nix
36 lines
882 B
Nix
{
|
|
mkDerivation, fetchurl, lib,
|
|
extra-cmake-modules, kdoctools, wrapGAppsHook,
|
|
kconfig, kinit, kjsembed, taglib, exiv2, podofo,
|
|
kcrash
|
|
}:
|
|
|
|
let
|
|
pname = "krename";
|
|
version = "5.0.1";
|
|
|
|
in mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
|
|
sha256 = "0zbadxjp13jqxgb58wslhm0wy2lhpdq1bgbvyhyn21mssfppib6a";
|
|
};
|
|
|
|
buildInputs = [ taglib exiv2 podofo ];
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
|
|
|
|
propagatedBuildInputs = [ kconfig kcrash kinit kjsembed ];
|
|
|
|
NIX_LDFLAGS = "-ltag";
|
|
|
|
meta = with lib; {
|
|
description = "A powerful batch renamer for KDE";
|
|
homepage = "https://kde.org/applications/utilities/krename/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
inherit (kconfig.meta) platforms;
|
|
};
|
|
}
|