Skip to content

Commit

Permalink
Merge pull request #67 from expipiplus1/sha256-fix
Browse files Browse the repository at this point in the history
Deep clone hash changed again
  • Loading branch information
expipiplus1 authored Jul 21, 2021
2 parents 51966fe + 9bb1731 commit 5bf7582
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## WIP

## [0.2.9] - 2021-07-21
- Fix dotgit / deepClone test sha256

## [0.2.8] - 2021-07-19
- Add `unstable-` prefix to versions when using dates

Expand Down
4 changes: 2 additions & 2 deletions nixpkgs.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
let
nixpkgsSrc = builtins.fetchTarball {
url =
"https://github.com/NixOS/nixpkgs/archive/c6c4a3d45ab200f17805d2d86a1ff1cc7ca2b186.tar.gz"; # nixos-unstable
sha256 = "1f6q98vx3sqxcn6qp5vpy00223r9hy93w9pxq65h9gdwzy3w4qxv";
"https://github.com/NixOS/nixpkgs/archive/967d40bec14be87262b21ab901dbace23b7365db.tar.gz"; # nixos-unstable
sha256 = "0vkcqwkrz6csrrv7zk4v9cryv5jy75px4qnzw8h3zljpvwrdpra6";
};

in import nixpkgsSrc { }
Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: update-nix-fetchgit
version: "0.2.8"
version: "0.2.9"
synopsis: A program to update fetchgit values in Nix expressions
description: |
This command-line utility is meant to be used by people maintaining Nix
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dotgit.expected.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ with pkgs;
srcDeep = fetchgit {
url = "/tmp/nix-update-fetchgit-test/repo1";
rev = "1c60ae07b5740aab02e32b4f64600f002112e6fd";
sha256 = "1qw5y2n4a7i7f9mscqf4xwyxg5bn5cbrha797kdc7fcgjnhp5dy7";
sha256 = "1ywf4ysn3fcr4dw24idz48i36ghvxbvi72icglp4nqhdj2s6bzj1";
deepClone = true;
};
}
2 changes: 1 addition & 1 deletion update-nix-fetchgit.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: update-nix-fetchgit
version: 0.2.8
version: 0.2.9
synopsis: A program to update fetchgit values in Nix expressions
description: This command-line utility is meant to be used by people maintaining Nix
expressions that fetch files from Git repositories. It automates the process
Expand Down

0 comments on commit 5bf7582

Please sign in to comment.