mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
32 lines
894 B
Nix
32 lines
894 B
Nix
{ lib, mkDerivation, fetchurl, cmake, extra-cmake-modules, wrapQtAppsHook,
|
|
karchive, kcoreaddons, kcrash, kiconthemes, kwidgetsaddons, solid, qgpgme }:
|
|
mkDerivation rec {
|
|
pname = "isoimagewriter";
|
|
version = "1.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz";
|
|
hash = "sha256-ppAiMD7Bvra3tPDWjlnkGZ08mGh2fLnrI8bdGZngal0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules wrapQtAppsHook ];
|
|
buildInputs = [
|
|
karchive
|
|
kcoreaddons
|
|
kcrash
|
|
kiconthemes
|
|
kwidgetsaddons
|
|
solid
|
|
qgpgme
|
|
];
|
|
|
|
meta = {
|
|
description = "Program to write hybrid ISO files onto USB disks";
|
|
homepage = "https://invent.kde.org/utilities/isoimagewriter";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ k900 ];
|
|
mainProgram = "isoimagewriter";
|
|
};
|
|
}
|