2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2017-03-22 22:44:19 +00:00
|
|
|
|
2017-03-23 23:04:36 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cde";
|
2017-03-23 23:04:36 +00:00
|
|
|
version = "0.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-11-01 00:44:05 +00:00
|
|
|
owner = "usnistgov";
|
|
|
|
repo = "corr-CDE";
|
2017-03-23 23:04:36 +00:00
|
|
|
rev = "v${version}";
|
2020-11-01 00:44:05 +00:00
|
|
|
sha256 = "sha256-s375gtqBWx0GGXALXR+fN4bb3tmpvPNu/3bNz+75UWU=";
|
2017-03-22 22:44:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# The build is small, so there should be no problem
|
|
|
|
# running this locally. There is also a use case for
|
|
|
|
# older systems, where modern binaries might not be
|
|
|
|
# useful.
|
|
|
|
preferLocalBuild = true;
|
|
|
|
|
|
|
|
patchBuild = ''
|
2020-11-01 00:44:05 +00:00
|
|
|
sed -i -e '/install/d' $src/Makefile
|
2017-03-22 22:44:19 +00:00
|
|
|
'';
|
2020-11-01 00:44:05 +00:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2017-03-22 22:44:19 +00:00
|
|
|
installPhase = ''
|
2020-11-01 00:44:05 +00:00
|
|
|
install -d $out/bin
|
|
|
|
install -t $out/bin cde cde-exec
|
2017-03-22 22:44:19 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2022-01-07 06:57:33 +00:00
|
|
|
homepage = "https://github.com/usnistgov/corr-CDE";
|
2017-03-22 22:44:19 +00:00
|
|
|
description = "A packaging tool for building portable packages";
|
2020-11-01 00:44:05 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2017-03-22 22:44:19 +00:00
|
|
|
maintainers = [ maintainers.rlupton20 ];
|
|
|
|
platforms = platforms.linux;
|
2018-12-10 03:36:38 +00:00
|
|
|
# error: architecture aarch64 is not supported by strace
|
|
|
|
badPlatforms = [ "aarch64-linux" ];
|
2017-03-22 22:44:19 +00:00
|
|
|
};
|
|
|
|
}
|