Unverified Commit 3111ccfe authored by K900's avatar K900 Committed by GitHub
Browse files

haskellPackages.ghc-settings-edit: avoid the use of filesets (#346733)

parents 5efce4fb 98063255
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -8,13 +8,10 @@
mkDerivation {
  pname = "ghc-settings-edit";
  version = "0.1.0";
  src = lib.fileset.toSource {
    root = ./.;
    fileset = lib.fileset.unions [
      ./Setup.hs
      ./ghc-settings-edit.lhs
      ./ghc-settings-edit.cabal
    ];
  src = builtins.path {
    path = ./.;
    name = "source";
    filter = path: _: (builtins.baseNameOf path) != "default.nix";
  };
  isLibrary = false;
  isExecutable = true;