Skip to content

Commit

Permalink
Merge pull request #317552 from djacu/bump-fix-nixfmt-rfc-style
Browse files Browse the repository at this point in the history
nixfmt-rfc-style: 2024-03-01 -> 2024-05-28
  • Loading branch information
tomberek authored Jun 6, 2024
2 parents 6c50c9f + 2c2f1d0 commit 455cabf
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 18 deletions.
2 changes: 1 addition & 1 deletion pkgs/by-name/ni/nixfmt-rfc-style/date.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-03-01
2024-05-28
15 changes: 8 additions & 7 deletions pkgs/by-name/ni/nixfmt-rfc-style/generated-package.nix
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
# This file has been autogenerate with cabal2nix.
# Update via ./update.sh
{ mkDerivation, base, cmdargs, directory, fetchzip, filepath, lib
, megaparsec, mtl, parser-combinators, safe-exceptions, scientific
, text, transformers, unix
, megaparsec, mtl, parser-combinators, pretty-simple
, safe-exceptions, scientific, text, transformers, unix
}:
mkDerivation {
pname = "nixfmt";
version = "0.5.0";
version = "0.6.0";
src = fetchzip {
url = "https://github.com/piegamesde/nixfmt/archive/2b5ee820690bae64cb4003e46917ae43541e3e0b.tar.gz";
sha256 = "1i1jbc1q4gd7fpilwy6s3a583yl5l8d8rlmipygj61mpclg9ihqg";
url = "https://github.com/nixos/nixfmt/archive/c67a7b65906bd2432730929bd0e4957659c95b8e.tar.gz";
sha256 = "03f00vwlla6i3m125389h3xjsl5xm07630ahm4w5gqwq1007y3r2";
};
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base megaparsec mtl parser-combinators scientific text transformers
base megaparsec mtl parser-combinators pretty-simple scientific
text transformers
];
executableHaskellDepends = [
base cmdargs directory filepath safe-exceptions text unix
];
jailbreak = true;
homepage = "https://github.com/serokell/nixfmt";
homepage = "https://github.com/NixOS/nixfmt";
description = "An opinionated formatter for Nix";
license = lib.licenses.mpl20;
mainProgram = "nixfmt";
Expand Down
7 changes: 0 additions & 7 deletions pkgs/by-name/ni/nixfmt-rfc-style/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,6 @@ let

passthru.updateScript = ./update.sh;

patches = [
(fetchpatch {
url = "https://github.com/serokell/nixfmt/commit/ca9c8975ed671112fdfce94f2e9e2ad3de480c9a.patch";
hash = "sha256-UOSAYahSKBsqPMVcQJ3H26Eg2xpPAsNOjYMI6g+WTYU=";
})
];

maintainers = lib.teams.formatter.members;

# These tests can be run with the following command.
Expand Down
6 changes: 3 additions & 3 deletions pkgs/by-name/ni/nixfmt-rfc-style/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ derivation_file="${script_dir}/generated-package.nix"
date_file="${script_dir}/date.txt"

# This is the latest version of nixfmt-rfc-style branch on GitHub.
new_version=$(curl --silent https://api.github.com/repos/piegamesde/nixfmt/git/refs/heads/rfc101-style | jq '.object.sha' --raw-output)
new_date=$(curl --silent https://api.github.com/repos/piegamesde/nixfmt/git/commits/"$new_version" | jq '.committer.date' --raw-output)
new_version=$(curl --silent https://api.github.com/repos/nixos/nixfmt/git/refs/heads/master | jq '.object.sha' --raw-output)
new_date=$(curl --silent https://api.github.com/repos/nixos/nixfmt/git/commits/"$new_version" | jq '.committer.date' --raw-output)

echo "Updating nixfmt-rfc-style to version $new_date."
echo "Running cabal2nix and outputting to ${derivation_file}..."
Expand All @@ -25,7 +25,7 @@ cat > "$derivation_file" << EOF
EOF

cabal2nix --jailbreak \
"https://github.com/piegamesde/nixfmt/archive/${new_version}.tar.gz" \
"https://github.com/nixos/nixfmt/archive/${new_version}.tar.gz" \
>> "$derivation_file"

date --date="$new_date" -I > "$date_file"
Expand Down

0 comments on commit 455cabf

Please sign in to comment.