about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2024-01-03 22:48:19 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2024-01-03 22:48:19 -0300
commit4a42a2bafc08a6a54894f2f4a4034c4b186ec8b1 (patch)
treee92f024d5ee82ca05d48f94ec0c5c148f1666fff /pkgs/applications/version-management
parent3011004124f89523d55bf8b977eb1a9cef883296 (diff)
src: migrate to by-name
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/src/default.nix61
1 files changed, 0 insertions, 61 deletions
diff --git a/pkgs/applications/version-management/src/default.nix b/pkgs/applications/version-management/src/default.nix
deleted file mode 100644
index 8db0c8469dd1a..0000000000000
--- a/pkgs/applications/version-management/src/default.nix
+++ /dev/null
@@ -1,61 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitLab
-, git
-, makeWrapper
-, python3
-, rcs
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "src";
-  version = "1.32";
-
-  src = fetchFromGitLab {
-    owner = "esr";
-    repo = "src";
-    rev = finalAttrs.version;
-    hash = "sha256-gVB0BdnrJ1ew49t9j5zlLpBC4WP9xxYlU26ilOWtq08=";
-  };
-
-  nativeBuildInputs = [
-    makeWrapper
-  ];
-
-  buildInputs = [
-    git
-    python3
-    rcs
-  ];
-
-  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/${finalAttrs.version}/NEWS.adoc";
-    license = licenses.bsd2;
-    mainProgram = "src";
-    maintainers = with maintainers; [ AndersonTorres ];
-    inherit (python3.meta) platforms;
-  };
-})