249c043d8d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/krusader/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/qk46il6aq1pyr1fbjfykklcpihj61cng-krusader-2.7.0/bin/krusader had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/qk46il6aq1pyr1fbjfykklcpihj61cng-krusader-2.7.0/bin/.krusader-wrapped had a zero exit code or showed the expected version - 0 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 2.7.0 with grep in /nix/store/qk46il6aq1pyr1fbjfykklcpihj61cng-krusader-2.7.0 - directory tree listing: https://gist.github.com/d2f674d471fc7a978cf2d1c9e4920a4e - du listing: https://gist.github.com/00387b725fabb991524a07962b9bf2fb
28 lines
788 B
Nix
28 lines
788 B
Nix
{
|
|
mkDerivation, fetchurl, lib,
|
|
extra-cmake-modules, kdoctools, wrapGAppsHook,
|
|
karchive, kconfig, kcrash, kguiaddons, kinit, kparts, kwindowsystem
|
|
}:
|
|
|
|
let
|
|
pname = "krusader";
|
|
version = "2.7.0";
|
|
in mkDerivation rec {
|
|
name = "krusader-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${version}/${name}.tar.xz";
|
|
sha256 = "09ws3samxnjk0qi9pcfm2rmw0nr5mzn9pzpljgrdb5qj7cmm4hcb";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Norton/Total Commander clone for KDE";
|
|
license = licenses.gpl2;
|
|
homepage = http://www.krusader.org;
|
|
maintainers = with maintainers; [ sander ];
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
|
|
propagatedBuildInputs = [ karchive kconfig kcrash kguiaddons kinit kparts kwindowsystem ];
|
|
}
|