pkgs/tools: stdenv.lib -> lib
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
{stdenv, fetchurl, libX11, libXaw}:
|
||||
{lib, stdenv, fetchurl, libX11, libXaw}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.10.0";
|
||||
pname = "autocutsel";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/sigmike/autocutsel/releases/download/${version}/${pname}-${version}.tar.gz";
|
||||
sha256 = "0gsys2dzh4az51ndcsabhlbbrjn2nm75lnjr45kg6r8sm8q66dx2";
|
||||
};
|
||||
|
||||
|
||||
buildInputs = [ libX11 libXaw ];
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
@@ -19,8 +19,8 @@ stdenv.mkDerivation rec {
|
||||
inherit version;
|
||||
homepage = "https://www.nongnu.org/autocutsel/";
|
||||
description = "Tracks changes in the server's cutbuffer and CLIPBOARD selection";
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
platforms = with stdenv.lib.platforms; all;
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = with lib.platforms; all;
|
||||
updateWalker = true;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user