1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00
nixpkgs/pkgs/desktops/kde-4.12/kdeutils/ark.nix

18 lines
335 B
Nix
Raw Normal View History

2014-05-25 03:04:18 +01:00
{ makeWrapper, kde, kdelibs, libarchive, bzip2, kde_baseapps, lzma, qjson
, unzip }:
2014-02-13 02:25:11 +00:00
kde {
2014-05-25 03:04:18 +01:00
buildInputs = [
makeWrapper kdelibs kde_baseapps libarchive bzip2 lzma qjson
];
postInstall = ''
wrapProgram $out/bin/ark \
--prefix PATH ":" "${unzip}/bin"
'';
2014-02-13 02:25:11 +00:00
meta = {
description = "KDE Archiving Tool";
};
}