treewide: name -> pname (easy cases) (#66585)
treewide replacement of
stdenv.mkDerivation rec {
name = "*-${version}";
version = "*";
to pname
This commit is contained in:
@@ -4,11 +4,11 @@
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rethinkdb-${version}";
|
||||
pname = "rethinkdb";
|
||||
version = "2.3.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.rethinkdb.com/dist/${name}.tgz";
|
||||
url = "https://download.rethinkdb.com/dist/${pname}-${version}.tgz";
|
||||
sha256 = "0a6wlgqa2flf87jrp4fq4y9aihwyhgwclmss56z03b8hd5k5j8f4";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user