build(nix): fix git ref not found and git lfs check

This commit is contained in:
Yusuf Bera Ertan 2021-06-19 22:05:22 +03:00
parent e7f54d6306
commit 81bc3d1966
No known key found for this signature in database
GPG Key ID: 1D8F8FAF2294D6EA
3 changed files with 11 additions and 11 deletions

View File

@ -24,11 +24,11 @@
"rustOverlay": "rustOverlay" "rustOverlay": "rustOverlay"
}, },
"locked": { "locked": {
"lastModified": 1623601923, "lastModified": 1624129119,
"narHash": "sha256-zQDRV3OMYKlewfp3k0ilmFNfcFDxBCCk0tbcde8HMYM=", "narHash": "sha256-Mq7SkCA35dEEbWWfO8by94/+sZbvWfv3P8ByxNCVmOg=",
"owner": "yusdacra", "owner": "yusdacra",
"repo": "nix-cargo-integration", "repo": "nix-cargo-integration",
"rev": "ab922adefdeb387ce105b1bde75f62ffb971cec4", "rev": "4018999c0998137c34b81ff2ff032d719cd25096",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -39,11 +39,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1623176226, "lastModified": 1623862044,
"narHash": "sha256-54a9uvHlIlK3i0b36HfGMc4zqM0BpMOOiFYBxEhQFK8=", "narHash": "sha256-mY7nldu9Wl/Yb0qMPihZrWw0bRWXNsk6iyYztw/6F6Y=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "51bb9f3e9ab6161a3bf7746e20b955712cef618b", "rev": "0747387223edf1aa5beaedf48983471315d95e16",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -62,11 +62,11 @@
"rustOverlay": { "rustOverlay": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1623550815, "lastModified": 1624069337,
"narHash": "sha256-RumRrkE6OTJDndHV4qZNZv8kUGnzwRHZQSyzx29r6/g=", "narHash": "sha256-9mTcx7osE4biF2Hm/GU19s1T3+KvphWj4QaUcJh39lU=",
"owner": "oxalica", "owner": "oxalica",
"repo": "rust-overlay", "repo": "rust-overlay",
"rev": "9824f142cbd7bc3e2a92eefbb79addfff8704cd3", "rev": "67dc2a9543a7c24591e6cb102ad0121c3a704aab",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -26,7 +26,7 @@
pkgs = common.pkgs; pkgs = common.pkgs;
lib = common.lib; lib = common.lib;
gitLfsCheckFile = ./assets/voxygen/background/bg_main.png; gitLfsCheckFile = ./assets/voxygen/background/bg_main.jpg;
utils = import ./nix/utils.nix { inherit pkgs; }; utils = import ./nix/utils.nix { inherit pkgs; };
sourceInfo = sourceInfo =

View File

@ -3,7 +3,7 @@
let let
gitLfsCheckOutput = gitLfsCheckOutput =
builtins.readFile (pkgs.runCommand "gitLfsCheck" { } '' builtins.readFile (pkgs.runCommand "gitLfsCheck" { } ''
([ "$(${pkgs.file}/bin/file --mime-type ${checkFile})" = "${checkFile}: image/png" ] && printf "0" || printf "1") > $out ([ "$(${pkgs.file}/bin/file --mime-type ${checkFile})" = "${checkFile}: image/jpeg" ] && printf "0" || printf "1") > $out
''); '');
in in
if gitLfsCheckOutput == "0" then if gitLfsCheckOutput == "0" then