mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
f253da42f8
Following nh2's advice, I want to be more involved in nixpkgs, and I'll start to review changes to programs that are important to me, and that didn't have a long list of maintainers yet.
29 lines
818 B
Nix
29 lines
818 B
Nix
{
|
|
mkDerivation, fetchurl, lib,
|
|
extra-cmake-modules, kdoctools, wrapGAppsHook,
|
|
karchive, kconfig, kcrash, kguiaddons, kinit, kparts, kwindowsystem
|
|
}:
|
|
|
|
let
|
|
pname = "krusader";
|
|
version = "2.7.2";
|
|
in mkDerivation rec {
|
|
pname = "krusader";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz";
|
|
sha256 = "02b1jz5a7cjr13v6c7fczrhs1xmg1krnva5fxk8x2bf4nd1rm8s1";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Norton/Total Commander clone for KDE";
|
|
license = licenses.gpl2;
|
|
homepage = "http://www.krusader.org";
|
|
maintainers = with maintainers; [ sander turion ];
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
|
|
propagatedBuildInputs = [ karchive kconfig kcrash kguiaddons kinit kparts kwindowsystem ];
|
|
}
|