nixpkgs/pkgs/by-name/ou/outils/package.nix

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

32 lines
707 B
Nix
Raw Normal View History

2022-03-03 08:38:39 +00:00
{ stdenv, fetchFromGitHub, lib }:
stdenv.mkDerivation rec {
pname = "outils";
2024-02-23 18:19:25 +00:00
version = "0.13";
2022-03-03 08:38:39 +00:00
src = fetchFromGitHub {
owner = "leahneukirchen";
2024-02-23 18:19:25 +00:00
repo = "outils";
2022-03-03 08:38:39 +00:00
rev = "v${version}";
2024-02-23 18:19:25 +00:00
hash = "sha256-FokJytwQsbGsryBzyglpb1Hg3wti/CPQTOfIGIz9ThA=";
2022-03-03 08:38:39 +00:00
};
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 ];
};
}