summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2017-10-05 04:10:57 -0400
committerAneesh Agrawal <aneeshusa@gmail.com>2018-01-04 02:28:33 -0500
commit36f1bcbeb85d8d3447e9a5dadb5801cfe615fded (patch)
tree94302aa0943cc06ca286fb6cfd24f2185fa3217b /pkgs/tools/text
parent8686b98612dc41d14df2a1f09a313d9084e5f6b6 (diff)
downloadnixlib-36f1bcbeb85d8d3447e9a5dadb5801cfe615fded.tar
nixlib-36f1bcbeb85d8d3447e9a5dadb5801cfe615fded.tar.gz
nixlib-36f1bcbeb85d8d3447e9a5dadb5801cfe615fded.tar.bz2
nixlib-36f1bcbeb85d8d3447e9a5dadb5801cfe615fded.tar.lz
nixlib-36f1bcbeb85d8d3447e9a5dadb5801cfe615fded.tar.xz
nixlib-36f1bcbeb85d8d3447e9a5dadb5801cfe615fded.tar.zst
nixlib-36f1bcbeb85d8d3447e9a5dadb5801cfe615fded.zip
ruby treewide: don't merge source into top-level
Keep the `source` attrset distinct to prevent its entries from merging
with the top level attrs.
Since each type of source has a different set of entries for `source`,
this is the easiest way to keep them together.
This will pave the way for a new `url` type of source.

This is a mass-rebuild of many ruby packages,
notably those using `git` type sources.
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/gist/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/text/gist/default.nix b/pkgs/tools/text/gist/default.nix
index 11fcae855281..cf4b90643d7d 100644
--- a/pkgs/tools/text/gist/default.nix
+++ b/pkgs/tools/text/gist/default.nix
@@ -5,7 +5,7 @@ buildRubyGem rec {
   name = "${gemName}-${version}";
   gemName = "gist";
   version = "4.6.1";
-  sha256 = "16qvmn7syvcf4lnblngzvq8xynvb62h1xhfc7xfb0c1sjh166hff";
+  source.sha256 = "16qvmn7syvcf4lnblngzvq8xynvb62h1xhfc7xfb0c1sjh166hff";
 
   buildInputs = [ makeWrapper ];