2
0
Fork 0

sotest-producer: 0.1.3 -> 0.2.0

This commit is contained in:
Ehmry - 2020-03-31 21:27:35 +05:30
parent 4ab70e41cf
commit 437365e059
1 changed files with 5 additions and 6 deletions

View File

@ -1,18 +1,17 @@
# SPDX-License-Identifier: CC0-1.0
{ stdenv, fetchgit, buildPackages, genodeLibcCross }:
{ stdenv, fetchgit, buildPackages }:
stdenv.mkDerivation rec {
pname = "sotest-producer";
version = "0.1.3";
version = "0.2.0";
nativeBuildInputs = with buildPackages; [ tup pkgconfig ];
buildInputs = with buildPackages; [ genodeLibcCross ];
src = fetchgit {
src = buildPackages.fetchgit {
url = "https://gitea.c3d2.de/ehmry/genode-sotest-producer.git";
rev = "v" + version;
sha256 = "0jmmshvmgq18ppdwac7mj9b55rczhbsk4vynglgb5vvjg6nqcr3p";
sha256 = "01qy86khkihj8jgvgc92w4bb3kpf640g1l2m5h5ym7s03viqinkr";
};
configurePhase = ''
@ -29,7 +28,7 @@ stdenv.mkDerivation rec {
popd
'';
installPhase = "cp -r out $out";
installPhase = "install -Dm755 {.,$out/bin}/sotest-harness";
meta = with stdenv.lib; {
license = "LicenseRef-Genode.txt";