summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornicoo <nicoo@mur.at>2023-05-23 16:39:01 +0000
committernicoo <nicoo@mur.at>2023-05-23 16:39:01 +0000
commit02c8450a59f007a4ff41c9c79c00fcdde2c1e172 (patch)
treeb9a444fc58c4dc958e6ad17879f9d5d56e02f549
parentMerge pull request #233339 from r-ryantm/auto-update/intel-compute-runtime (diff)
downloadnixpkgs-02c8450a59f007a4ff41c9c79c00fcdde2c1e172.tar.gz
csslint: 0.10.0 → 1.0.5, fix broken executable
Close #233644 by removing the duplicate (& out-of-date) derivation.
-rw-r--r--pkgs/development/web/csslint/default.nix35
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 1 insertions, 36 deletions
diff --git a/pkgs/development/web/csslint/default.nix b/pkgs/development/web/csslint/default.nix
deleted file mode 100644
index 9a8169429791..000000000000
--- a/pkgs/development/web/csslint/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ lib, stdenv, fetchurl, nodejs }:
-
-stdenv.mkDerivation rec {
- version = "0.10.0";
- pname = "csslint";
-
- src = fetchurl {
- url = "https://registry.npmjs.org/csslint/-/${pname}-${version}.tgz";
- sha256 = "1gq2x0pf2p4jhccvn3y3kjhm1lmb4jsfdbzjdh924w8m3sr9jdid";
- };
-
- # node is the interpreter used to run this script
- buildInputs = [ nodejs ];
-
- installPhase = ''
- sed -i "s/path\.join/path\.resolve/g" cli.js # fixes csslint issue #167
- mkdir -p $out/bin;
- cp -r * $out/bin
- mv $out/bin/cli.js $out/bin/csslint
- '';
-
- meta = with lib; {
- description = "Checks CSS for syntax errors and other problems";
- longDescription = ''
- CSSLint is a tool to help point out problems with your CSS
- code. It does basic syntax checking as well as applying a set of
- rules to the code that look for problematic patterns or signs of
- inefficiency. The rules are all pluggable, so you can easily
- write your own or omit ones you don't want. '';
- homepage = "https://nodejs.org";
- license = licenses.bsd2;
- maintainers = [ maintainers.goibhniu ];
- platforms = platforms.linux;
- };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 20ff64f9b3b5..071e45eee1c1 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -18135,7 +18135,7 @@ with pkgs;
csmith = callPackage ../development/tools/misc/csmith { };
- csslint = callPackage ../development/web/csslint { };
+ inherit (nodePackages) csslint;
css-html-js-minify = with python3Packages; toPythonApplication css-html-js-minify;