Skip to content

Commit

Permalink
fix: nix flake show requiring IFD
Browse files Browse the repository at this point in the history
  • Loading branch information
DavHau committed Jun 27, 2024
1 parent 481cd64 commit da3e367
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
version = "1.5.0";

mkDerivation = {
src = config.deps.fetchFromGitHub {
owner = "DavHau";
repo = "cowsay";
rev = "package-lock-v3";
sha256 = "sha256-KuZkGWl5An78IFR5uT/2jVTXdm71oWB+p143svYVkqQ=";
src = builtins.fetchGit {
shallow = true;
url = "https://github.com/DavHau/cowsay";
ref = "package-lock-v3";
rev = "c89952cb75e3e54b8ca0033bd3499297610083c7";
};
# allow devshell to be built -> CI pipeline happy
buildPhase = "mkdir $out";
Expand Down
10 changes: 5 additions & 5 deletions examples/packages/languages/nodejs-packaging/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
];

mkDerivation = {
src = config.deps.fetchFromGitHub {
owner = "DavHau";
repo = "cowsay";
rev = "package-lock-v3";
sha256 = "sha256-KuZkGWl5An78IFR5uT/2jVTXdm71oWB+p143svYVkqQ=";
src = builtins.fetchGit {
shallow = true;
url = "https://github.com/DavHau/cowsay";
ref = "package-lock-v3";
rev = "c89952cb75e3e54b8ca0033bd3499297610083c7";
};
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
];

mkDerivation = {
src = config.deps.fetchFromGitHub {
owner = "DavHau";
repo = "cowsay";
rev = "package-lock-v3";
sha256 = "sha256-KuZkGWl5An78IFR5uT/2jVTXdm71oWB+p143svYVkqQ=";
src = builtins.fetchGit {
shallow = true;
url = "https://github.com/DavHau/cowsay";
ref = "package-lock-v3";
rev = "c89952cb75e3e54b8ca0033bd3499297610083c7";
};
};

Expand Down

0 comments on commit da3e367

Please sign in to comment.