mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
rinutils: init at 0.8.0
This commit is contained in:
parent
ce5601d9dd
commit
500eb3096d
21
pkgs/development/libraries/rinutils/default.nix
Normal file
21
pkgs/development/libraries/rinutils/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
stdenv, lib, fetchurl,
|
||||
cmake, perl,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rinutils";
|
||||
version = "0.8.0";
|
||||
|
||||
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 = "1q09aihm5m42xiq2prpa9mf0srwiirzgzblkp5nl74i7zg6pg5hx";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake perl ];
|
||||
}
|
@ -16419,6 +16419,8 @@ in
|
||||
|
||||
readosm = callPackage ../development/libraries/readosm { };
|
||||
|
||||
rinutils = callPackage ../development/libraries/rinutils { };
|
||||
|
||||
kissfft = callPackage ../development/libraries/kissfft { };
|
||||
|
||||
lambdabot = callPackage ../development/tools/haskell/lambdabot {
|
||||
|
Loading…
Reference in New Issue
Block a user