Compare commits

..

No commits in common. "0c144fb0592254f2a4aa212901ef2e5970e439d4" and "4514cd040c591b8cfe633b0a57bfb748b604c2c9" have entirely different histories.

3 changed files with 1 additions and 52 deletions

View File

@ -1,4 +1,4 @@
Copyright (C) 2023 by Jordan Holt <jordan@vimium.com>
Copyright (C) 2006 by Rob Landley <rob@landley.net>
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.

27
flake.lock generated
View File

@ -1,27 +0,0 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1681092589,
"narHash": "sha256-I11GYL+6yD6dX89H0WaMiptE52NZ2Tmx+rA23TUyfH8=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "83ca2cd74539fb8e79d46e233f6bb1d978c36f32",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View File

@ -1,24 +0,0 @@
{
description = "Vimium.com website";
inputs.nixpkgs.url = github:nixos/nixpkgs/nixpkgs-unstable;
outputs = { self, nixpkgs }:
let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
defaultPackage.x86_64-linux = pkgs.stdenv.mkDerivation {
name = "vimium-www";
version = "1";
src = ./.;
installPhase = ''
mkdir -p $out
cp -r images $out
cp *.html $out
cp *icon* $out
'';
};
};
}