Unverified Commit 73f3d75c authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

xe: modernize, adopt (#375560)

parents 553dfdeb edc39f12
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -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";
  };
}