trace-cmd: 2.9-dev -> 2.9.1, kernelshark: 1.1.0 -> 1.2

Besides updating the version, this commit decouples trace-cmd and
kernelshark source revisions. These two programs are developed in the
same repository but are released independently. Nixpkgs built the
previous versions of these programs from the same source commit, which
meant that at least one of the programs were not built from the
officially released version. Now we use the release tags of the
corresponding programs.
This commit is contained in:
Michal Sojka
2021-03-22 11:00:26 +01:00
parent 4e0d3868c6
commit 136ae024c0
4 changed files with 27 additions and 23 deletions
+7 -3
View File
@@ -1,9 +1,13 @@
{ lib, stdenv, fetchgit, asciidoc, docbook_xsl, libxslt }:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "trace-cmd";
version = "2.9-dev";
version = "2.9.1";
src = fetchgit (import ./src.nix);
src = fetchgit {
url = "git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/";
rev = "trace-cmd-v${version}";
sha256 = "19c63a0qmcppm1456qf4k6a0d1agcvpa6jnbzrdcyc520yax6khw";
};
patches = [ ./fix-Makefiles.patch ];