Skip to content

Instantly share code, notes, and snippets.

@joepie91
Last active August 19, 2017 23:11
Show Gist options
  • Save joepie91/fd256f1c4145bc98068c4cd623d761f5 to your computer and use it in GitHub Desktop.
Save joepie91/fd256f1c4145bc98068c4cd623d761f5 to your computer and use it in GitHub Desktop.
{ stdenv, pkgs, ... }:
{ path, storeHash, ... }:
let
derivationName = baseNameOf path;
storePath = "/nix/store/${storeHash}-${derivationName}";
in
if builtins.pathExists storePath then storePath else path
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment