Unverified Commit 4341057d authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

dfilemanager: move to by-name (#400240)

parents 9339f057 5c5f656c
Loading
Loading
Loading
Loading
+12 −10
Original line number Diff line number Diff line
{
  lib,
  mkDerivation,
  stdenv,
  fetchFromGitHub,
  cmake,
  libsForQt5,
  file,
  qtbase,
  qttools,
  solid,
}:

mkDerivation {
stdenv.mkDerivation {
  pname = "dfilemanager";
  version = "unstable-2021-02-20";

@@ -17,15 +15,18 @@ mkDerivation {
    owner = "probonopd";
    repo = "dfilemanager";
    rev = "61179500a92575e05cf9a71d401c388726bfd73d";
    sha256 = "sha256-BHd2dZDVxy82vR6PyXIS5M6zBGJ4bQfOhdBCdOww4kc=";
    hash = "sha256-BHd2dZDVxy82vR6PyXIS5M6zBGJ4bQfOhdBCdOww4kc=";
  };

  nativeBuildInputs = [ cmake ];
  nativeBuildInputs = [
    cmake
    libsForQt5.wrapQtAppsHook
  ];
  buildInputs = [
    qtbase
    qttools
    libsForQt5.qtbase
    libsForQt5.qttools
    libsForQt5.solid
    file
    solid
  ];

  cmakeFlags = [ "-DQT5BUILD=true" ];
@@ -36,5 +37,6 @@ mkDerivation {
    mainProgram = "dfm";
    license = lib.licenses.gpl2;
    platforms = lib.platforms.unix;
    maintainers = [ ];
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -13872,8 +13872,6 @@ with pkgs;
  dfasma = libsForQt5.callPackage ../applications/audio/dfasma { };
  dfilemanager = libsForQt5.callPackage ../applications/file-managers/dfilemanager { };
  direwolf = callPackage ../applications/radio/direwolf {
    hamlib = hamlib_4;
  };