gopsuinfo 0.1.2 -> 0.1.3 https://repology.org/metapackage/gopsuinfo/versions attrpath: gopsuinfo Checking auto update branch... No auto update branch exists Old version 0.1.2" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub }: buildGoModule rec { pname = "gopsuinfo"; version = "0.1.3"; src = fetchFromGitHub { owner = "nwg-piotr"; repo = "gopsuinfo"; rev = "v${version}"; sha256 = "sha256-e+obIFbhjxsdnyJe3+sUpe9pK9eNTspxNH+Cvf4RBMQ="; }; vendorHash = "sha256-S2ZHfrbEjPDweazwWbMbEMcMl/i+8Nru0G0e7RjOJMk="; # Remove installing of binary from the Makefile (already taken care of by # `buildGoModule`) patches = [ ./no_bin_install.patch ]; # Fix absolute path of icons in the code postPatch = '' substituteInPlace gopsuinfo.go \ --replace "/usr/share/gopsuinfo" "$out/usr/share/gopsuinfo" ''; # Install icons postInstall = '' make install DESTDIR=$out ''; meta = with lib; { description = "A gopsutil-based command to display system usage info"; homepage = "https://github.com/nwg-piotr/gopsuinfo"; license = licenses.bsd2; maintainers = with maintainers; [ otini ]; platforms = platforms.linux; }; }