depot/pkgs/by-name/ou/outils/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

31 lines
707 B
Nix

{ stdenv, fetchFromGitHub, lib }:
stdenv.mkDerivation rec {
pname = "outils";
version = "0.13";
src = fetchFromGitHub {
owner = "leahneukirchen";
repo = "outils";
rev = "v${version}";
hash = "sha256-FokJytwQsbGsryBzyglpb1Hg3wti/CPQTOfIGIz9ThA=";
};
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 ];
};
}