Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,39 +1,40 @@
{
lib,
buildPerlPackage,
perlPackages,
fetchFromGitHub,
makeWrapper,
openssh,
GitRepository,
URI,
XMLParser,
}:

buildPerlPackage {
perlPackages.buildPerlPackage {
pname = "ham-unstable";
version = "2023-10-06";
version = "2025-02-25";

src = fetchFromGitHub {
owner = "kernkonzept";
repo = "ham";
rev = "90d104ce481ee8f9b770be4b37d97f34eef5f82f";
hash = "sha256-DeHH7k9K7CmQW6eOyf8TCV/HNYS30oFnI1b8ztBDk/o=";
rev = "81b6f05fd91865c7d42b94a683388504489356dc";
hash = "sha256-a1JaUD/jrF7Yf+vyUoKQFjojxenmsCVw3Uo8u7RjPiQ=";
};

outputs = [ "out" ];

nativeBuildInputs = [ makeWrapper ];
propagatedBuildInputs = [
openssh
nativeBuildInputs = [
makeWrapper
];
buildInputs = with perlPackages; [
GitRepository
URI
XMLParser
];
propagatedBuildInputs = [
openssh
];

preConfigure = ''
patchShebangs .
touch Makefile.PL
rm -f Makefile
touch Makefile.PL
patchShebangs .
'';

installPhase = ''
Expand Down
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3592,8 +3592,6 @@ with pkgs;

hareThirdParty = recurseIntoAttrs (callPackage ./hare-third-party.nix { });

ham = pkgs.perlPackages.ham;

hdf5 = callPackage ../tools/misc/hdf5 {
fortranSupport = false;
fortran = gfortran;
Expand Down
2 changes: 0 additions & 2 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11479,8 +11479,6 @@ with self; {
};
};

ham = callPackage ../development/perl-modules/ham { };

HashFlatten = buildPerlPackage {
pname = "Hash-Flatten";
version = "1.19";
Expand Down