about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaxHearnden <maxoscarhearnden@gmail.com>2023-05-24 19:30:41 +0100
committerEmery Hemingway <ehmry@posteo.net>2023-11-26 16:55:31 +0200
commit089df4ec038a411893b68fafae358d8577f6e2cc (patch)
treecf6bfc19533b5581e9b725538cc94fb1b0f2d6d0
parent95b24a5d243e4b1bd78dac75cb8e358b6ac777af (diff)
Fix issues raised at review
The issues can be found at https://github.com/NixOS/nixpkgs/pull/227295.
The review was quite helpful.
-rw-r--r--pkgs/applications/version-management/git-cache/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/version-management/git-cache/default.nix b/pkgs/applications/version-management/git-cache/default.nix
index 0286177ef2881..147570c7afd10 100644
--- a/pkgs/applications/version-management/git-cache/default.nix
+++ b/pkgs/applications/version-management/git-cache/default.nix
@@ -1,6 +1,6 @@
 {fetchFromGitHub, lib, stdenv}:
 
-stdenv.mkDerivation rec {
+stdenv.mkDerivation {
   pname = "git-cache";
   version = "2018-06-18";
 
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     owner = "Seb35";
     repo = "git-cache";
     rev = "354f661e40b358c5916c06957bd6b2c65426f452";
-    sha256 = "sha256-V7rQOy+s9Lzdc+RTA2QGPfyavw4De/qQ+tWrzYtO2qA=";
+    hash = "sha256-V7rQOy+s9Lzdc+RTA2QGPfyavw4De/qQ+tWrzYtO2qA=";
   };
 
   dontBuild = true;
@@ -19,9 +19,9 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     homepage = "https://github.com/Seb35/git-cache";
-    license = lib.licenses.wtfpl;
+    license = licenses.wtfpl;
     description = "A program to add and manage a system-wide or user-wide cache for remote git repositories";
-    platforms = with platforms; linux ++ darwin;
-    maintainers = [];
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ maxhearnden ];
   };
 }