about summary refs log tree commit diff
path: root/pkgs/by-name/ou
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2024-02-29 18:54:25 +0100
committerGitHub <noreply@github.com>2024-02-29 18:54:25 +0100
commitd1c27146399606b803437687af8fc69fa003bc1d (patch)
tree38fea723d38a119fcc113c790e7ca15cfbd7dc01 /pkgs/by-name/ou
parent5b00a3990496b8d279d316cf48b6dfeadeae9134 (diff)
parent9a2784c65292ed59024b3b5c1e27cb70b44cd5fa (diff)
Merge pull request #290945 from leahneukirchen/outils-0.13
outils: 0.10 -> 0.13
Diffstat (limited to 'pkgs/by-name/ou')
-rw-r--r--pkgs/by-name/ou/outils/package.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/by-name/ou/outils/package.nix b/pkgs/by-name/ou/outils/package.nix
new file mode 100644
index 0000000000000..e29e6440edcb7
--- /dev/null
+++ b/pkgs/by-name/ou/outils/package.nix
@@ -0,0 +1,31 @@
+{ 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 ];
+  };
+}