xe: modernize, adopt (#375560)

This commit is contained in:
Peder Bergebakken Sundt
2025-01-27 12:22:21 +01:00
committed by GitHub
+7 -7
View File
@@ -9,20 +9,20 @@ stdenv.mkDerivation rec {
version = "1.0";
src = fetchFromGitHub {
owner = "chneukirchen";
owner = "leahneukirchen";
repo = "xe";
rev = "v${version}";
tag = "v${version}";
sha256 = "sha256-yek6flBhgjSeN3M695BglUfcbnUGp3skzWT2W/BxW8Y=";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
meta = {
description = "Simple xargs and apply replacement";
homepage = "https://github.com/chneukirchen/xe";
license = licenses.publicDomain;
platforms = platforms.all;
maintainers = [ ];
homepage = "https://github.com/leahneukirchen/xe";
license = lib.licenses.publicDomain;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.pbsds ];
mainProgram = "xe";
};
}