nixpkgs/pkgs/applications/editors/okteta/default.nix

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

39 lines
934 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchurl, extra-cmake-modules, kdoctools, qtscript, kconfig
2018-05-24 07:47:38 +00:00
, kinit, karchive, kcrash, kcmutils, kconfigwidgets, knewstuff, kparts
, qca-qt5, shared-mime-info }:
2017-02-02 01:26:17 +00:00
2020-04-07 20:30:21 +00:00
mkDerivation rec {
pname = "okteta";
2024-01-03 06:51:14 +00:00
version = "0.26.15";
2018-05-24 07:47:38 +00:00
src = fetchurl {
url = "mirror://kde/stable/okteta/${version}/src/${pname}-${version}.tar.xz";
2024-01-03 06:51:14 +00:00
sha256 = "sha256-BTNQDvcGjBJG4hj1N69yboNth4/ydeOS7T2KiqbPfGM=";
};
2018-08-20 02:08:46 +00:00
2017-08-18 17:28:05 +00:00
nativeBuildInputs = [ qtscript extra-cmake-modules kdoctools ];
buildInputs = [ shared-mime-info ];
2018-08-20 02:08:46 +00:00
2017-08-18 17:28:05 +00:00
propagatedBuildInputs = [
2018-05-24 07:47:38 +00:00
kconfig
kinit
kcmutils
kconfigwidgets
knewstuff
kparts
qca-qt5
karchive
kcrash
2017-05-16 15:56:41 +00:00
];
2018-08-20 02:08:46 +00:00
outputs = [ "out" "dev" ];
meta = with lib; {
2018-05-24 07:47:38 +00:00
license = licenses.gpl2;
2019-10-08 18:54:38 +00:00
description = "A hex editor";
2023-10-02 19:31:14 +00:00
homepage = "https://apps.kde.org/okteta/";
2018-05-24 07:47:38 +00:00
maintainers = with maintainers; [ peterhoeg bkchr ];
platforms = platforms.linux;
};
2017-02-02 01:26:17 +00:00
}