about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-01-05 18:00:58 +0000
committerGitHub <noreply@github.com>2024-01-05 18:00:58 +0000
commit76201c62e0719461b9ed205d2d0ee9e377e8cf3a (patch)
treef95d71aefa071df2a0f840ff5bfb70b01dc117df /pkgs/applications/version-management
parent4a887669bd93a80b40111cd337745d33be35e046 (diff)
parentad41959648854b127ff78f734d6d16376691f137 (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/src/default.nix57
1 files changed, 0 insertions, 57 deletions
diff --git a/pkgs/applications/version-management/src/default.nix b/pkgs/applications/version-management/src/default.nix
deleted file mode 100644
index 5ac3919775986..0000000000000
--- a/pkgs/applications/version-management/src/default.nix
+++ /dev/null
@@ -1,57 +0,0 @@
-{ lib
-, stdenv
-, fetchurl
-, python
-, rcs
-, git
-, makeWrapper
-}:
-
-stdenv.mkDerivation rec {
-  pname = "src";
-  version = "1.32";
-
-  src = fetchurl {
-    url = "http://www.catb.org/~esr/src/${pname}-${version}.tar.gz";
-    sha256 = "sha256-CSA1CmPvXuOl9PzX97/soGRq2HHBcYuA5PepOVMaMWU=";
-  };
-
-  nativeBuildInputs = [
-    makeWrapper
-  ];
-
-  buildInputs = [
-    python
-    rcs
-    git
-  ];
-
-  preConfigure = ''
-    patchShebangs .
-  '';
-
-  makeFlags = [ "prefix=${placeholder "out"}" ];
-
-  postInstall = ''
-    wrapProgram $out/bin/src \
-      --suffix PATH ":" "${rcs}/bin"
-  '';
-
-  meta = with lib; {
-    homepage = "http://www.catb.org/esr/src/";
-    description = "Simple single-file revision control";
-    longDescription = ''
-      SRC, acronym of Simple Revision Control, is RCS/SCCS reloaded with a
-      modern UI, designed to manage single-file solo projects kept more than one
-      to a directory. Use it for FAQs, ~/bin directories, config files, and the
-      like. Features integer sequential revision numbers, a command set that
-      will seem familiar to Subversion/Git/hg users, and no binary blobs
-      anywhere.
-    '';
-    changelog = "https://gitlab.com/esr/src/raw/${version}/NEWS";
-    license = licenses.bsd2;
-    maintainers = with maintainers; [ calvertvl AndersonTorres ];
-    inherit (python.meta) platforms;
-    mainProgram = "src";
-  };
-}