Commit 61f9f97d authored by Sridhar Ratnakumar's avatar Sridhar Ratnakumar
Browse files

devour-flake: remove package

The package is no longer used by other packages. The 'nixci' package
used it until version 0.2.0.
parent bc477a77
Loading
Loading
Loading
Loading
+0 −27
Original line number Diff line number Diff line
{ writeShellApplication
, fetchFromGitHub
, nix
}:

let
  devour-flake = fetchFromGitHub {
    owner = "srid";
    repo = "devour-flake";
    rev = "v2";
    hash = "sha256-CZedJtbZlWAbv/b/aYgOEFd9vcTBn/oJNI3p29UitLk=";
  };
in
writeShellApplication {
  name = "devour-flake";
  runtimeInputs = [ nix ];
  text = ''
    FLAKE="$1"
    shift 1 || true

    nix build ${devour-flake}#default \
      "$@" \
      -L --no-link --print-out-paths \
      --override-input flake "$FLAKE" \
      | xargs cat
  '';
}
+0 −2
Original line number Diff line number Diff line
@@ -597,8 +597,6 @@ with pkgs;
  dec-decode = callPackage ../development/tools/dec-decode { };
  devour-flake = callPackage ../tools/nix/devour-flake { };
  dnf5 = callPackage ../tools/package-management/dnf5 { };
  documenso = callPackage ../applications/office/documenso { };