treewide: name -> pname (easy cases) (#66585)
treewide replacement of
stdenv.mkDerivation rec {
name = "*-${version}";
version = "*";
to pname
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
{ fetchurl, stdenv, intltool, pkgconfig, gtk2, xdotool, hicolor-icon-theme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "clipit-${version}";
|
||||
pname = "clipit";
|
||||
version = "1.4.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/downloads/shantzu/ClipIt/${name}.tar.gz";
|
||||
url = "https://github.com/downloads/shantzu/ClipIt/${pname}-${version}.tar.gz";
|
||||
sha256 = "0jrwn8qfgb15rwspdp1p8hb1nc0ngmpvgr87d4k3lhlvqg2cfqva";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user