Unverified Commit d705ec9b authored by Matthew Croughan's avatar Matthew Croughan Committed by GitHub
Browse files

{rmtfs,tqftpserv}: small fixes (#467157)

parents cd65923b b1ed90e7
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -12,10 +12,10 @@ stdenv.mkDerivation (finalAttrs: {
  version = "1.1.1";

  src = fetchFromGitHub {
    owner = "andersson";
    owner = "linux-msm";
    repo = "rmtfs";
    tag = "v${finalAttrs.version}";
    hash = "sha256-00KOjdkwcAER261lleSl7OVDEAEbDyW9MWxDd0GI8KA=";
    hash = "sha256-ehd8SbKNOpyVoF9oc7e5uYmJOHI+Q6woLyvwO8hhKEc=";
  };

  buildInputs = [
@@ -32,5 +32,6 @@ stdenv.mkDerivation (finalAttrs: {
    homepage = "https://github.com/linux-msm/rmtfs";
    license = licenses.bsd3;
    platforms = platforms.aarch64;
    mainProgram = "rmtfs";
  };
})
+6 −3
Original line number Diff line number Diff line
@@ -12,13 +12,15 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "tqftpserv";
  version = "1.1";
  # Use unstable for fixed systemd service
  # with removed qrtr-ns dependency.
  version = "1.1-unstable-2025-08-01";

  src = fetchFromGitHub {
    owner = "linux-msm";
    repo = "tqftpserv";
    tag = "v${finalAttrs.version}";
    hash = "sha256-Djw2rx1FXYYPXs6Htq7jWcgeXFvfCUoeidKtYUvTqZU=";
    rev = "408ca1ed5e4e0a9ac3650b13d3f3c60079b3e2a3";
    hash = "sha256-IlM/HVdo/7cA9NnJrCW/B0yKks5jWYqxRyy3ay4wDr8=";
  };

  buildInputs = [
@@ -45,5 +47,6 @@ stdenv.mkDerivation (finalAttrs: {
    homepage = "https://github.com/andersson/tqftpserv";
    license = licenses.bsd3;
    platforms = platforms.aarch64;
    mainProgram = "tqftpserv";
  };
})