extrace: 0.8 -> 0.9

* extrace: 0.8 -> 0.9 (#159232)
and use SPDX 3.0 license identifier

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
main
R. RyanTM 2 years ago committed by GitHub
parent fdb5e077e1
commit 48e2b7b76d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      pkgs/os-specific/linux/extrace/default.nix

@ -2,16 +2,16 @@
stdenv.mkDerivation rec {
pname = "extrace";
version = "0.8";
version = "0.9";
src = fetchFromGitHub {
owner = "leahneukirchen";
repo = "extrace";
rev = "v${version}";
sha256 = "sha256-Kg5yzVg9sqlOCzAq/HeFUPZ89Enfkt/r7EunCfOqdA0=";
hash = "sha256-Jy/Ac3NcqBkW0kHyypMAVUGAQ41qWM96BbLAym06ogM=";
};
makeFlags = [ "PREFIX=$(out)" ];
makeFlags = [ "PREFIX=${placeholder "out"}" ];
postInstall = ''
install -dm755 "$out/share/licenses/extrace/"
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/leahneukirchen/extrace";
description = "Trace exec() calls system-wide";
license = with licenses; [ gpl2 bsd2 ];
license = with licenses; [ gpl2Plus bsd2 ];
platforms = platforms.linux;
maintainers = [ maintainers.leahneukirchen ];
};

Loading…
Cancel
Save