depot/third_party/nixpkgs/pkgs/development/libraries/rinutils/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

21 lines
464 B
Nix

{
stdenv, lib, fetchurl,
cmake, perl,
}:
stdenv.mkDerivation rec {
pname = "rinutils";
version = "0.10.1";
meta = with lib; {
homepage = "https://github.com/shlomif/rinutils";
license = licenses.mit;
};
src = fetchurl {
url = "https://github.com/shlomif/${pname}/releases/download/${version}/${pname}-${version}.tar.xz";
sha256 = "sha256-MewljOmd57u+efMzjOcwSNrEVCUEXrK9DWvZLRuLmvs=";
};
nativeBuildInputs = [ cmake perl ];
}