Skip to content

Commit

Permalink
chore(nix): move e2fsprogs to nvfetcher definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
qkaiser committed Dec 14, 2023
1 parent 41e1c03 commit 92b5dc8
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 6 deletions.
20 changes: 20 additions & 0 deletions nix/_sources/generated.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
{
"e2fsprogs": {
"cargoLocks": null,
"date": null,
"extract": null,
"name": "e2fsprogs",
"passthru": null,
"pinned": false,
"src": {
"deepClone": false,
"fetchSubmodules": false,
"leaveDotGit": false,
"name": null,
"owner": "onekey-sec",
"repo": "e2fsprogs",
"rev": "v1.47.0-3.ok1",
"sha256": "sha256-lGv1l9/guOEskvIE6DIsg/nRiDTvORZI0h7n623/fgU=",
"type": "github"
},
"version": "v1.47.0-3.ok1"
},
"jefferson": {
"cargoLocks": null,
"date": null,
Expand Down
11 changes: 11 additions & 0 deletions nix/_sources/generated.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# This file was generated by nvfetcher, please do not modify it manually.
{ fetchgit, fetchurl, fetchFromGitHub, dockerTools }:
{
e2fsprogs = {
pname = "e2fsprogs";
version = "v1.47.0-3.ok1";
src = fetchFromGitHub {
owner = "onekey-sec";
repo = "e2fsprogs";
rev = "v1.47.0-3.ok1";
fetchSubmodules = false;
sha256 = "sha256-lGv1l9/guOEskvIE6DIsg/nRiDTvORZI0h7n623/fgU=";
};
};
jefferson = {
pname = "jefferson";
version = "0.4.5";
Expand Down
4 changes: 4 additions & 0 deletions nvfetcher.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@ fetch.pypi = "pyfatfs"
[lief]
src.github_tag = "lief-project/LIEF"
fetch.github = "lief-project/LIEF"

[e2fsprogs]
src.github_tag = "onekey-sec/e2fsprogs"
fetch.github = "onekey-sec/e2fsprogs"
6 changes: 0 additions & 6 deletions overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ inputs: final: prev:
(super: {
pname = "e2fsprogs-nofortify";
hardeningDisable = (super.hardeningDisable or [ ]) ++ [ "fortify3" ];

version = "1.47.0-3.ok1";
src = prev.fetchurl {
url = "https://github.com/onekey-sec/e2fsprogs/archive/refs/tags/v1.47.0-3.ok1.tar.gz";
hash = "sha256-fsLUySjAdgnRp5m405a4Egso+LXNLxR9Y7WHt8qAvFM=";
};
});

# Own package updated independently of nixpkgs
Expand Down

0 comments on commit 92b5dc8

Please sign in to comment.