summary refs log tree commit diff
path: root/pkgs/tools/package-management/nix-prefetch-scripts
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-04 02:09:36 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-05 16:30:29 +0100
commita9743d1b5806c98f2e55fdfc58ecee6e3bce4aa2 (patch)
tree25976b0852f087ce964397279bd4cea716ab0dcb /pkgs/tools/package-management/nix-prefetch-scripts
parente0b0d094e5e633fadce8f3555599af6ad03c5e0a (diff)
downloadnixpkgs-a9743d1b5806c98f2e55fdfc58ecee6e3bce4aa2.tar
nixpkgs-a9743d1b5806c98f2e55fdfc58ecee6e3bce4aa2.tar.gz
nixpkgs-a9743d1b5806c98f2e55fdfc58ecee6e3bce4aa2.tar.bz2
nixpkgs-a9743d1b5806c98f2e55fdfc58ecee6e3bce4aa2.tar.lz
nixpkgs-a9743d1b5806c98f2e55fdfc58ecee6e3bce4aa2.tar.xz
nixpkgs-a9743d1b5806c98f2e55fdfc58ecee6e3bce4aa2.tar.zst
nixpkgs-a9743d1b5806c98f2e55fdfc58ecee6e3bce4aa2.zip
nix-prefetch-scripts: cleanup
Diffstat (limited to 'pkgs/tools/package-management/nix-prefetch-scripts')
-rw-r--r--pkgs/tools/package-management/nix-prefetch-scripts/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/package-management/nix-prefetch-scripts/default.nix b/pkgs/tools/package-management/nix-prefetch-scripts/default.nix
index 8b318306873..a77d0961c84 100644
--- a/pkgs/tools/package-management/nix-prefetch-scripts/default.nix
+++ b/pkgs/tools/package-management/nix-prefetch-scripts/default.nix
@@ -1,5 +1,5 @@
-{ lib, stdenv, makeWrapper, buildEnv,
-  breezy, coreutils, cvs, findutils, gawk, git, gnused, mercurial, nix, subversion
+{ lib, stdenv, makeWrapper, buildEnv
+, breezy, coreutils, cvs, findutils, gawk, git, gnused, mercurial, nix, subversion
 }:
 
 let mkPrefetchScript = tool: src: deps:
@@ -22,7 +22,7 @@ let mkPrefetchScript = tool: src: deps:
     meta = with lib; {
       description = "Script used to obtain source hashes for fetch${tool}";
       maintainers = with maintainers; [ bennofs ];
-      platforms = lib.platforms.unix;
+      platforms = platforms.unix;
     };
   };
 in rec {
@@ -40,7 +40,7 @@ in rec {
     meta = with lib; {
       description = "Collection of all the nix-prefetch-* scripts which may be used to obtain source hashes";
       maintainers = with maintainers; [ bennofs ];
-      platforms = lib.platforms.unix;
+      platforms = platforms.unix;
     };
   };
 }