mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-03 01:13:25 +03:00
Merge pull request #179665 from somasis/outils
This commit is contained in:
commit
f509e9dc87
31
pkgs/tools/misc/outils/default.nix
Normal file
31
pkgs/tools/misc/outils/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, lib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "outils";
|
||||||
|
version = "0.10";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "leahneukirchen";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-xYjILa0Km57q/xNP+M34r29WLGC15tzUNoUgPzQTtIs=";
|
||||||
|
};
|
||||||
|
|
||||||
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/leahneukirchen/outils";
|
||||||
|
description = "Port of OpenBSD-exclusive tools such as `calendar`, `vis`, and `signify`";
|
||||||
|
license = with licenses; [
|
||||||
|
beerware
|
||||||
|
bsd2
|
||||||
|
bsd3
|
||||||
|
bsdOriginal
|
||||||
|
isc
|
||||||
|
mit
|
||||||
|
publicDomain
|
||||||
|
];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ somasis ];
|
||||||
|
};
|
||||||
|
}
|
@ -10037,6 +10037,8 @@ with pkgs;
|
|||||||
|
|
||||||
ouch = callPackage ../tools/compression/ouch { };
|
ouch = callPackage ../tools/compression/ouch { };
|
||||||
|
|
||||||
|
outils = callPackage ../tools/misc/outils {};
|
||||||
|
|
||||||
mpi = openmpi; # this attribute should used to build MPI applications
|
mpi = openmpi; # this attribute should used to build MPI applications
|
||||||
|
|
||||||
ucx = callPackage ../development/libraries/ucx {};
|
ucx = callPackage ../development/libraries/ucx {};
|
||||||
|
Loading…
Reference in New Issue
Block a user