Unverified Commit 1c03650b authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

malt: 1.2.6 -> 1.4.1 (#456259)

parents 0f597a39 94efa73d
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -10,13 +10,13 @@

stdenv.mkDerivation rec {
  pname = "malt";
  version = "1.2.6";
  version = "1.4.1";

  src = fetchFromGitHub {
    owner = "memtt";
    repo = "malt";
    rev = "v${version}";
    sha256 = "sha256-Hq6XDxcjH5ronprnV1CwumGqBg9RXYpJ+WANqoBA2/c=";
    sha256 = "sha256-4lCAEk/b8APuOo+x/kGSTg7vFSBZf/VBuSMDM7o5sts=";
  };

  postPatch = ''
@@ -26,6 +26,10 @@ stdenv.mkDerivation rec {
      src/integration/malt-{webview,passwd}.sh.in
  '';

  cmakeFlags = [
    (lib.cmakeBool "ENABLE_JEMALLOC" false)
  ];

  nativeBuildInputs = [ cmake ];
  buildInputs = [
    libelf
@@ -36,7 +40,7 @@ stdenv.mkDerivation rec {
    description = "Memory tool to find where you allocate your memory";
    homepage = "https://github.com/memtt/malt";
    license = licenses.cecill-c;
    maintainers = [ ];
    maintainers = with maintainers; [ skohtv ];
    platforms = platforms.linux;
  };
}