about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2024-02-23 19:19:25 +0100
committerLeah Neukirchen <leah@vuxu.org>2024-02-29 14:43:29 +0100
commit9a2784c65292ed59024b3b5c1e27cb70b44cd5fa (patch)
treec66f7ee9a5060005c76ed0a637fdc6e6cebb6191 /pkgs/tools
parent4a31674816bd4a216f8769ba40f8d0f560aa6d53 (diff)
downloadnixlib-9a2784c65292ed59024b3b5c1e27cb70b44cd5fa.tar
nixlib-9a2784c65292ed59024b3b5c1e27cb70b44cd5fa.tar.gz
nixlib-9a2784c65292ed59024b3b5c1e27cb70b44cd5fa.tar.bz2
nixlib-9a2784c65292ed59024b3b5c1e27cb70b44cd5fa.tar.lz
nixlib-9a2784c65292ed59024b3b5c1e27cb70b44cd5fa.tar.xz
nixlib-9a2784c65292ed59024b3b5c1e27cb70b44cd5fa.tar.zst
nixlib-9a2784c65292ed59024b3b5c1e27cb70b44cd5fa.zip
outils: 0.10 -> 0.13
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/outils/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/tools/misc/outils/default.nix b/pkgs/tools/misc/outils/default.nix
deleted file mode 100644
index 065d641f4f30..000000000000
--- a/pkgs/tools/misc/outils/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ 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 ];
-  };
-}