[CLEANUP] Unused packages / files.

This commit is contained in:
Kat Inskip 2023-04-25 16:38:45 -07:00
parent e642b3879c
commit 8573c4508d
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
6 changed files with 0 additions and 264 deletions

View file

@ -1,19 +0,0 @@
{ stdenv, fetchurl, autoPatchelfHook }:
stdenv.mkDerivation rec {
pname = "dart-sass";
version = "1.58.1";
src = fetchurl {
url =
"https://github.com/sass/${pname}/releases/download/${version}/${pname}-${version}-linux-x64.tar.gz";
sha256 = "sha256-5/mEeshCakp/eju9MhFZ8VXvHEuXGiDVtUI2UhI0XPU=";
};
nativeBuildInputs = [ autoPatchelfHook ];
installPhase = ''
mkdir -p $out/bin
mv sass $out/bin
'';
}

View file

@ -1,20 +0,0 @@
{
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation rec {
pname = "stackline";
version = "2022-11-29";
src = fetchFromGitHub {
owner = "AdamWagner";
repo = "stackline";
rev = "2aa0bd9a27f93bad24b0fd4da38f3c0356414098";
sha256 = "sha256-x7SIgKR6rwkoVVbaAvjFr1N7wTF3atni/d6xGLBBRN4=";
};
installPhase = ''
mkdir -p $out
mv ./* $out/
'';
}