depot/pkgs/kde/gear/ark/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
168 B
Nix
Raw Normal View History

{
mkKdeDerivation,
libarchive,
libzip,
}:
mkKdeDerivation {
pname = "ark";
extraBuildInputs = [
libarchive
libzip
];
meta.mainProgram = "ark";
}