about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-01-05 11:52:09 -0500
committerGitHub <noreply@github.com>2024-01-05 11:52:09 -0500
commit4363ab24f1e80c560e709bd07a33ef69e02dff21 (patch)
tree4833a2dcd236365c8449201d64f9fe5bdae7efe9 /pkgs/applications/version-management
parent6a77d46505c69048a15ddd6eca0a168acbb9ac43 (diff)
parent0a36bc913ba70d1b2828a746e2aec72e1157a6d6 (diff)
Merge pull request #278610 from atorres1985-contrib/src
src: 1.32 -> 1.33
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";
-  };
-}