nixpkgs/pkgs/development/libraries/rinutils/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
464 B
Nix
Raw Normal View History

2021-01-31 22:59:11 +03:00
{
stdenv, lib, fetchurl,
cmake, perl,
}:
stdenv.mkDerivation rec {
pname = "rinutils";
2022-02-11 20:11:06 +03:00
version = "0.10.0";
2021-01-31 22:59:11 +03:00
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";
2022-02-11 20:11:06 +03:00
sha256 = "sha256-cNifCoRk+PSU8zcEt8k5bn/KOS6Kr6pEZXEMGjiemAY=";
2021-01-31 22:59:11 +03:00
};
nativeBuildInputs = [ cmake perl ];
}